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.
- Host: GitHub
- URL: https://github.com/life-of-dan/ez-react-lib
- Owner: life-of-dan
- Created: 2022-06-19T03:31:44.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-30T12:57:01.000Z (almost 4 years ago)
- Last Synced: 2025-10-13T11:14:30.562Z (9 months ago)
- Topics: component-library, library
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/ez-react-lib
- Size: 618 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
```