shared-react-components
Some React components I use in my personal projects.
Installation
npm i react react-dom styled-components @benderthecrime/components
Usage
import React from 'react'
import {H1, Header, Navigation, Page, Section, Text} from '@benderthecrime/components'
export const LandingPage = () => <Page>
<Header>
<H1>Hello, world!</H1>
<Navigation />
</Header>
<Section>
<Text>
Nice to meet you!
</Text>
</Section>
</Page>
export default LandingPage