A comprehensive Solid UI components library based on the Arco Design system.
All components are written in TypeScript so it's type friendly.
pnpm install arco-design-solidimport { render } from 'solid-js/web';
import { Button } from 'arco-design-solid';
import 'arco-design-solid/dist/index.css';
function App() {
return (
<Button type='secondary'>
Hello World
</Button>
);
}
render(()=><App />, document.getElementById('app'));This project is MIT licensed.