@benderthecrime/components
v2.0.3
Published
Some React components I use in my personal projects.
Downloads
1
Maintainers
Readme
shared-react-components
Some React components I use in my personal projects.
⚠️ I'm constantly improving these components, but they probably aren't stable enough to use in your production apps.
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