atomic-elements
v0.2.0-beta.5
Published
Atomic Elements is a React component library
Downloads
38
Readme
Atomic Elements
Atomic Elements is a React component library
Storybook
Atomic Element uses storybook for development / documentation. Access here
Quickstart
$ npm install --save atomic-elements
$ yarn add atomic-elements
Import these stylesheets at the root of your app
import "atomic-elements/dist/fonts.css";
import "atomic-elements/dist/variables.css";
import "atomic-elements/dist/globals.css";
Then, start using components
import React from "react";
import { Button } from "atomic-elements";
export default function ExampleComponent() {
return <Button>Click Me!</Button>;
}