Skip to content

rawat-shashank/tbd-components

 
 

Repository files navigation

Project Name

@the-boring/components

Table of contents

Usage

To start consuming this library, make sure to have the peerDependencies met. Check package.json.

To install the library in your project, run:

$ npm install @the-boring/components

Example

Assuming we are using it in nextjs with typescript. Here is an example to use test component from our library

import type { NextPage } from "next";
import { TestComponent } from "@the-boring/components";

const Home: NextPage = () => {
  return (
    <TestComponent theme="primary" />
  );
};
...

Authors

License

This project is licensed under the terms of the MIT license