2.0.3 • Published 4 years ago

@benderthecrime/components v2.0.3

Weekly downloads
5
License
MIT
Repository
-
Last release
4 years ago

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