tm-reuseable-components
v0.3.3
Published
This is a reuseable components lib made for TextMercato
Maintainers
Readme
tm-reuseable-components
tm-reuseable-components is built upon [@mui/material]
Installation
npm install tm-reuseable-componentsImporting components
You should import individual components like: tm-reuseable-components/button rather than the entire library. Doing so pulls in only the specific components that you use, which can significantly reduce the amount of code you end up sending to the client
import { Button } from 'tm-reuseable-components';
// or less ideally
import { Button } from 'tm-reuseable-components';Importing Icons
You can import materil icons under tm-reuseable-components/Icons
import { Icons } from 'tm-ui-components/icons'Example
import React from 'react'
import { Button } from 'tm-reuseable-components/button';
...
return (
...
<Button variant='contained' color='primary'>Click me</Button>
...
)
...
