iCHEF web components library, built with React.
yarn add @ichef/gypcrete
Here is a quick example to get you started:
./App.js
import React from 'react';
import ReactDOM from 'react-dom';
import CustomComponent from './CustomComponent';
import '@ichef/gypcrete/dist/gypcrete.css';
const App = () => (
<div>
<CustomComponent />
</div>
);
ReactDOM.render(
<App />,
document.getElementById('app')
);
./CustomComponent.js
import React from 'react';
import { Button } from '@ichef/gypcrete';
const CustomComponent = () => (
<Button basic="Hello World!" />
);
export default CustomComponent;
This project is licensed under the terms of the Apache License 2.0