@benderthecrime/components

Some React components I use in my personal projects.

Usage no npm install needed!

<script type="module">
  import benderthecrimeComponents from 'https://cdn.skypack.dev/@benderthecrime/components';
</script>

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