UNPKG

pico-design

Version:

A minimal, modern, and flexible design system for creators, designers, and developers. Built to streamline UI development with well-structured, accessible, and scalable components. Designed for React, with future support for other frameworks.

12 lines (10 loc) 260 B
import React from "react"; import Button from '../../components/button'; // Correct import for default export export default function Preview() { return ( <> <h1>preview </h1> <Button variant="primary">Biuld Version</Button> </> ); }