UNPKG

423 BJSXView Raw
1import React from 'react';
2import ReactDOM from 'react-dom';
3
4import withStyles from './withStyles';
5import ComponentA from './ComponentA';
6
7const EntryPoint = withStyles(() => ({
8 EntryPoint_primary: { color: 'black' },
9 EntryPoint_secondary: { color: 'white' },
10}))(function EntryPoint() {
11 return (
12 <div>
13 <ComponentA />
14 </div>
15 );
16});
17
18ReactDOM.render(<EntryPoint />, document.getElementById('root'));
19
\No newline at end of file