1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-fela/pages/index.js
Robin Frischmann 8d8d5ebdf6 Example using Fela (#863)
* added example using fela

* update package-json

* removed nested routing test

* fixed linting issues

* fixed typo
2017-01-23 20:29:15 -03:00

16 lines
276 B
JavaScript

import { createComponent } from 'react-fela'
import Page from '../layout'
const title = ({ size }) => ({
fontSize: size + 'px',
color: 'red'
})
const Title = createComponent(title, 'h1')
export default () => (
<Page>
<Title size={50}>My Title</Title>
</Page>
)