@joshuagardiner/typescript-component-library
v1.0.0-alpha.1.2
Published
Improve the speed at which you can build aesthetically pleasing React applications.
Downloads
118
Maintainers
Readme
Component Library
Improve the speed at which you can build aesthetically pleasing React applications.
With a simple and customizable component library to build faster, beautiful, and more accessible React applications.
Installation
Component Library is available as an npm package.
NPM:
npm install @joshuagardiner/typescript-component-libraryYarn:
yarn add @joshuagardiner/typescript-component-libraryUsage
import { LoadingSpinner } from "@joshuagardiner/typescript-component-library";
const MyApp = () => {
return (
<>
<LoadingSpinner text={"Loading.."} />
</>
);
};