Build your apps faster with accessible, customizable components that are optimized for both desktop and mobile use.
The CRUD component is a table based view for quickly displaying, editing, creating and deleting database records.
function App() {
return <Crud query={query('tasks')} />
}
The combo box is used to quickly select a specific item from a database table.
function App() {
return <Combobox query={query('tasks')} />
}
The Upload component is used for uploading files. It shows the upload progress using a progress bar, allows for retrying in case of error and supports drag and drop.
function App() {
return <Upload table="files" />
}