Skip to content

iCHEF/gypcrete

Folders and files

NameName
Last commit message
Last commit date
Jun 2, 2017
Jun 2, 2017
Mar 9, 2017
Jul 4, 2017
Jul 25, 2017
Jul 5, 2017
Jul 25, 2017
Mar 3, 2017
Jun 2, 2017
May 6, 2017
Mar 8, 2017
Jul 5, 2017
Jul 13, 2017
Jun 21, 2017
Jul 4, 2017
May 17, 2017
Jul 5, 2017
Jul 4, 2017

Repository files navigation

gypcrete

iCHEF web components library, built with React.

npm package build status Coverage Status

PeerDependencies Dependencies DevDependencies

Demo

ichef.github.io/gypcrete

Installation

yarn add @ichef/gypcrete

Usage

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;

LICENSE

This project is licensed under the terms of the Apache License 2.0