feat: add input component

This commit is contained in:
Alexandr
2022-08-03 14:55:16 +03:00
parent 96036c27e8
commit d3921ad9df
18 changed files with 590 additions and 380 deletions

View File

@@ -15,6 +15,13 @@ function buildSidebar() {
...getComponents(),
],
},
{
text: 'Form',
collapsible: true,
items: [
...getFormComponents(),
],
},
{
text: 'Utils',
collapsible: true,
@@ -55,6 +62,12 @@ function getComponents() {
]
}
function getFormComponents() {
return [
{ text: 'Input', link: 'components/input/input.md' },
]
}
function getUtils() {
return [
{ text: 'Flowbite Themable', link: '/components/flowbiteThemable/flowbiteThemable.md' },