Slide 38
Slide 38 text
import React from 'react';
import { ThemeProvider } from 'styled-components';
import theme from './theme';
const App = props !=> (
{!/* application elements !*/}
!
)
export default App;
const theme = {
breakpoints: ['768px'],
space: [0, 4, 8, 16, 24, 32, 64],
fontSizes: [12, 14, 16, 20, 24, 32],
colors: {
black: '#000',
blacks: ['#ccc', '#999']
white: '#fff',
primary: '#456000',
},
button: { !!... },
breadcrumb: { !!... }
…
pagination: { !!... }
}