Skip to content

Subhash106/components

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

This package has UI components like Card, Button and TextInput that can be used in react applications.

Usage

import {Card, Button, TextInput} from '@subashchandra/components'

export default function App() {
  return (
    <div className="container">
      <h1>Components</h1>
      <p>This is a button component</p>
      <Button>Click me</Button>
      <p>This is a `basic` card component</p>
      <Card type="basic">Go to office</Card>
      <p>This is a `success` card component</p>
      <Card type="success">Go to office</Card>
      <p>This is a `TextInput` component</p>
      <TextInput value="Text input" />
    </div>
  );
}

You can learn more on github

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published