fast-react-de-am
v1.0.76
Published
fast-react-de-am is a library of react components
Downloads
18
Readme
fast-react-de-am is a library of react components
- Install
npm install fast-react-de-am
- An example of using the Button and NeoCard components
'use client'
import Button from "fast-react-de-am/dist/Button"
import NeoCard from "fast-react-de-am/dist/NeoCard"
import "fast-react-de-am/dist/style.css"
export default function Home() {
return (
<>
<Button label='Any label' />
<NeoCard
btnTitle="Title for Button"
label="Custom label"
description="Description for NeoCard"
price="price"
src="/path/to/picture/"
customClass="CSSClassName"
onClick={() => console.log('ok')} />
</>
);
}