0.4.7 • Published 5 years ago

atlas-components v0.4.7

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Atlas Components

Public components for React

npm

CodeFactor CircleCI

Installation

yarn add atlas-components

Basic Usage

import { AtlasButton } from "atlas-components";

In render:

public render() {
    return <AtlasButton label="Test Button" />
}

Contributing

  1. Create a new component folder in src/components
  2. Follow the format of AtlasButton (index.ts, full sass file, and no default exporting) and add your component to AtlasC
  3. Create a file called exactly what your exported component is called in src/componentDemos
  4. It should automatically be picked up and added to the docs
  5. Submit and PR!