1.60.8 • Published 3 years ago

@devopschatclass/cc-web-components v1.60.8

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

cc-web-components

NPM JavaScript Style Guide

Install

npm install --save chatclass-components

Usage

import React from 'react'

import { ThemeProvider, Button } from 'chatclass-components'

interface AppProps {}

const App: React.FC<AppProps> = () => {
  return (
    <ThemeProvider>
      <Button backgroundColor='primary' color='white'>
        Hello, I am a styled button
      </Button>
    </ThemeProvider>
  )
}

Live Demo

For examples of the chatclass-components in action, checkout the storybook here.