lc-react-essentials

A simple yet awesome React Parallax component and some other essentials

Usage no npm install needed!

<script type="module">
  import lcReactEssentials from 'https://cdn.skypack.dev/lc-react-essentials';
</script>

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


See on 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.