cards-tess-lib1
v1.0.0
Published
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 (
Downloads
2
Readme
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;