aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-docs/example/ts/index.tsx
blob: 84a544766941827785c8a132c846e0951c58e947 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'),
);
a>Gerald Pfeifer2014-09-111-0/+1 * - Update The Glorious Glasgow Haskell Compiler to version 7.8.3Gabor Pali2014-08-113-6/+5 * - Fix LIB_DEPENDS linesGabor Pali2014-07-15