Design System is a set of components that have been standardized by a guideline to reduce redundancy and make all components consistent both in language and visually.
BCC-Design System is available at npmjs: @bccfilkom/designsystem
# with NPM
npm install @bccfilkom/designsystem
# with YARN
yarn add @bccfilkom/designsystem
Check out our official documentation website
This is a quick example of using BCC - Design System component
import * as React from 'react';
import ReactDOM from 'react-dom';
import {Button} from '@bccfilkom/designsystem';
function App() {
return (
<Button onClick={() => console.log("Hello world")}>Hello World</Button>
);
}
ReactDOM.render(<App />, document.querySelector('#app'));
Please read our Contributing Guidelines to get started on developing.
This project is bound by a Code of Conduct.
Copyright (c) 2021 bccdesignsystem and/or contributors. All rights reserved.