freeCodeCamp's component library is a collection of reusable React components that can be used in your projects. The components are built with accessibility in mind and are designed to be easy to use and customize.
pnpm install @freecodecamp/ui
// app.tsx
import "@freecodecamp/ui/dist/base.css";
import "./my-app.css"; // Your custom stylesheet should be imported after, in order to override the base.
getThemingClass
util to get a CSS class for theming, and add the class to the body
element:import { getThemingClass } from "@freecodecamp/ui";
const MyApp = () => {
const cls = getThemingClass();
return <body className={cls}></body>;
};
To see the components in action, check out the Storybook.