0.1.3 • Published 3 years ago

@gizmotix/example-design-system v0.1.3

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

Simple Design System

Bootstrapped with Create React App. Using TypeScript and Styled Components. Compatible with React 17.0.2 and higher.

npm i @gizmotix/example-design-system

import styled from 'styled-components'
import { Login, GlobalStyles } from '@gizmotix/example-design-system'

const ContainerStyled = styled.div`
  display: flex;
  justify-content: center;
  padding: 1rem;
`

function App() {
  return (
    <>
      <GlobalStyles />
      <ContainerStyled>
        <Login />
      </ContainerStyled>
    </>
  )
}

export default App