@atomicjolt/atomic-elements
v3.5.1
Published
Atomic Elements is a React component library
Keywords
Readme
Atomic Elements
Atomic Elements is a React component library
Storybook
Atomic Element uses storybook for development / documentation. Access here
To run the Atomic Elements storybook itself
$ yarn storybook:devTo spin up a React playground to test components
$ yarn playgroundQuickstart
$ npm install --save @atomicjolt/atomic-elements$ yarn add @atomicjolt/atomic-elementsInclude the following in your project
import { ElementsProvider } from "@atomicjolt/atomic-elements";
const App = () => (
<ElementsProvider>
<YourApp />
</ElementsProvider>
);Then, start using components
import React from "react";
import { Button } from "@atomicjolt/atomic-elements";
export default function ExampleComponent() {
return <Button>Click Me!</Button>;
}