React-SSC (Simple Site Components)
A collection of design components for creating a responsive website.
!Still being developed. Anything can change!
If you include this package as a dependency in your project, be wary that a future version may work in very different ways...
Installation / Setup
npm i react-ssc || yarn add react-ssc
Most components are stateless and only handle styling. For now, this package does not export the stylesheets by default and so you must import them seperate from the main library. If you are using bundler like Webpack, the entry point is a good place to do this:
; // import the component library; // import the stylesheets ... Component { return <SSCContainer> ... </SSCContainer> ; }