-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.js
39 lines (38 loc) · 1.08 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import React from 'react';
import { StyleProvider } from 'cf-style-provider';
import BasicSyntax from './01-basic-syntax/';
import DynamicStyles from './02-dynamic-styles/';
import MediaQueries from './03-media-queries/';
import Fonts from './04-fonts/';
import Selectors from './05-selectors/';
import Prefixes from './06-prefixes/';
import Fallbacks from './07-fallbacks/';
import Polished from './08-polished/';
import Gotchas from './09-gotchas/';
import Keyframes from './10-keyframes/';
import Testing from './11-testing/';
import Integration from './12-integration/';
import Advanced from './13-advanced/';
import Themes from './14-themes/';
import Composition from './15-composition/';
import './styles.css';
export default () =>
<StyleProvider dev>
<div>
<BasicSyntax />;
<DynamicStyles />
<MediaQueries />
<Fonts />
<Selectors />
<Prefixes />
<Fallbacks />
<Polished />
<Gotchas />
<Keyframes />
<Testing />
<Integration />
<Advanced />
<Themes />
<Composition />
</div>
</StyleProvider>;