1.0.0 • Published 6 months ago

cards-tess-lib2 v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

CARD Card is a JavaScript library for creating user interfaces.It can be used as react component . It is typically used together with a React renderer like react-dom for the web. Usage import { Card } from "cards-tess-lib"; function App() { return (

        <div>
			<h1>Card Sample </h1>
			<Card title="Card 1" content="Content 1" selected={true} />
			<Card title="Card 2" content="Content 2" selected={false} />
			<Card title="Card 3" content="Content 3" selected={true} />
		</div>

)};

export default App;