yas24 / track24-framework

Track24 Framework

Home Page:https://arnaskro.github.io/track24-framework/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Track24 Framework

This framework is the Track24 toolset that we use to build front end applications. It uses storybook to display all the components that you can play around with.

Installation

Simply run

npm install 

Usage

If you're using it in the Hub project:

const Button from window.Framework

Develop components with Storybook

npm run storybook
npm run watch-css

Open http://localhost:9001/ in your favorite web browser.

Then import your component(s) into stories/index.jsx and render them like so:

storiesOf("Some component name", module)
  .add("Default", () => (
    <ComponentName />
  ))
  .add("Some variation", () => (
    <ComponentName prop="value" />
  ));

Exporting your latest storybook changes

npm run storybook-export

Then commit the generated files and view your latest changes here.

Contributing

Please read the guidelines for contributing before making a pull request.

About

Track24 Framework

https://arnaskro.github.io/track24-framework/


Languages

Language:CSS 57.7%Language:JavaScript 42.3%