React and Zurb Foundation based design system for life sciences web applications.
The purpose of Franklin is to create a library a re-usable user interface components, with some components specific to displaying biological data.
Building the Franklin site
"start": //start the local dev application,
"build-site": //build the franklin website,
"build-library": //build the franklin library (npm package),
"build": //build both site and library,
"docgen": //generate documentation for components
"jslint": //check code style,
"test": //run tests and check code style,
"test-watch": //watch tests
Get from npm:
yarn install franklin-sites
Wrap your application in the FranklinSite
tag:
import { FranklinSite } from "franklin-sites";
...
<FranklinSite>
//Your content goes here//
</FranklinSite>