@antonyjones87/core-components
v0.1.0
Published
Essential building blocks for creating modern React user interfaces
Readme
packages / core-components
The core-components package contains foundational UI components that form the building blocks of the design system.
Explore other packages in the building-blocks monorepo
Getting started
To get started with using the components from this package in your project, follow these steps:
Install the
core-componentspackage from npm:npm install @antonyjones87/core-componentsImport and use the components in your React application, ensuring they are wrapped within the
ThemeProvidercomponent:import { Stack, Text, ThemeProvider } from '@antonyjones87/core-components'; function App() { return ( <ThemeProvider theme="light"> <Stack gap="medium"> <Text variant="h1">Hello, World!</Text> <Text>How are you today?</Text> </Stack> </ThemeProvider> ); }
