blob: 7a94708fcc2e456571ddf71cf550bc9b72eff020 (
plain)
1
2
3
4
5
6
7
8
9
|
import React from 'react';
import Main from './main';
export default {
start (options) {
var el = document.querySelector(options.el);
React.render(<Main options={options}/>, el);
}
};
|