lc-react-essentials
v1.4.0
Published
A simple yet awesome React Parallax component and some other essentials
Downloads
5
Maintainers
Readme
LC React Essentials
It is a small set of reusable components created to implement web UIs consistently.
Go to the Storybook and try things out https://lc-react-essentials-storybook.web.app/?path=/story/welcome-getting-started--page
📦 NPM
📦 How to install
npm install lc-react-essentials
yarn add lc-react-essentials
🚀 Usage
Once installed, all you have to do is import the components as needed, for example:
import React from "react";
import { ContentBlock, Button } from "lc-react-essentials";
const App = () => (
<ContentBlock
title={`I am Brajeam George`}
subtitle={`And I'm a Photographer`}
fontColor='black'
children={
<>
<Button label='Hire me' />
<Button label='Galery' />
</>
}
/>
);
export default App;
🔨 Troubleshooting
In case of any issue, head over to the GitHub repo and create an issue if your issue does not already exist.