remove example top-level dir
This commit is contained in:
17
packages/react-docs-example/ts/index.tsx
Normal file
17
packages/react-docs-example/ts/index.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import 'basscss/css/basscss.css';
|
||||
import 'less/all.less';
|
||||
import { MuiThemeProvider } from 'material-ui/styles';
|
||||
import * as React from 'react';
|
||||
import { render } from 'react-dom';
|
||||
import * as injectTapEventPlugin from 'react-tap-event-plugin';
|
||||
|
||||
import { Docs } from './docs';
|
||||
|
||||
injectTapEventPlugin();
|
||||
|
||||
render(
|
||||
<MuiThemeProvider>
|
||||
<Docs />
|
||||
</MuiThemeProvider>,
|
||||
document.getElementById('app'),
|
||||
);
|
Reference in New Issue
Block a user