1.0.1 • Published 4 years ago

startout-ui v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

StartOut UI

Design system for StartOut Australia.

Setup

In your project, first install startout-ui.

$ yarn add startout-ui

At the entry of your application, import the ThemeProvider component.

import { ThemeProvider } from "startout-ui";

Finally, render the ThemeProvider and any components within:

import { ThemeProvider, Block, Text } from "startout-ui";

export default () => (
  <ThemeProvider>
    <Block>
      <Text>I love StartOut</Text>
    </Block>
  </ThemeProvider>
);

Local Development

This project uses yarn to manage dependencies.

Develop using the storybook server.

$ yarn
$ yarn storybook