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.
Component Library is available as an npm package.
NPM:
npm install @joshuagardiner/typescript-component-library
Yarn:
yarn add @joshuagardiner/typescript-component-library
import { LoadingSpinner } from "@joshuagardiner/typescript-component-library";
const MyApp = () => {
return (
<>
<LoadingSpinner text={"Loading.."} />
</>
);
};