You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

40 lines
663 B

import React from 'react';
import ColorStyle from './Color/ColorStyle';
import {
BrowserMockup,
Common,
Demo,
HeadingAnchor,
Highlight,
Icon,
IconPickSearcher,
Markdown,
NProgress,
PreviewImage,
Reset,
Responsive,
SearchBar,
} from './styles';
import InlineCard from './styles/InlineCard';
const GlobalStyles = () => (
<>
<Reset />
<Common />
<Markdown />
<Highlight />
<Demo />
<Icon />
<IconPickSearcher />
<BrowserMockup />
<Responsive />
<NProgress />
<PreviewImage />
<InlineCard />
<ColorStyle />
<HeadingAnchor />
<SearchBar />
</>
);
export default GlobalStyles;