Get started with APEX Design System by installing the package via npm.
Before installing, make sure you have the following:
npm install apex-design-systemImport the CSS file in your app's entry point:
import 'apex-design-system/dist/styles.css';import { Button, Card, Input } from 'apex-design-system';
export default function App() {
return (
<Card>
<h2>Welcome to APEX</h2>
<Input placeholder="Enter your email" />
<Button variant="primary">Get Started</Button>
</Card>
);
}