An open API service indexing awesome lists of open source software.

https://github.com/life-of-dan/ez-react-lib

๐Ÿ“ฆ Helper package containing a variety of react based components to speed up and ease the development process.
https://github.com/life-of-dan/ez-react-lib

component-library library

Last synced: 3 months ago
JSON representation

๐Ÿ“ฆ Helper package containing a variety of react based components to speed up and ease the development process.

Awesome Lists containing this project

README

          

# Welcome to `ez-react-lib`

### About

`Description` - Helper package containing a variety of react based components to speed up and ease the development process.

`Author` - [Daniel Scott](https://github.com/DanielsDesigns-au)

### Features

- Typescript support ๐Ÿ’ช
- Testing support via jest ๐Ÿงช
- Easy to use ๐Ÿ› ๏ธ
- Time saver โŒš

### Usage

```typescript
// Import component at head of file
import { Card } from 'ez-react-lib';
import styles from './index.module.scss';

// Render component inside jsx body
const Home: NextPage = ({ data }) => {
const handleClick = () => {
if (isMember) {
window.location.push('/members-only');
}
};

return (
<>

>
);
};

export default Home;
```