🎨 Incluye componentes base originales de PageTop
This commit is contained in:
parent
fc579fc29d
commit
ee46003c15
29 changed files with 4276 additions and 11 deletions
11
pagetop-minimal/src/component/form_element.rs
Normal file
11
pagetop-minimal/src/component/form_element.rs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
mod form;
|
||||
pub use form::{Form, FormMethod, COMPONENT_FORM};
|
||||
|
||||
mod input;
|
||||
pub use input::{Input, InputType, COMPONENT_INPUT};
|
||||
mod hidden;
|
||||
pub use hidden::{Hidden, COMPONENT_HIDDEN};
|
||||
mod date;
|
||||
pub use date::{Date, COMPONENT_DATE};
|
||||
mod button;
|
||||
pub use button::{Button, ButtonType, COMPONENT_BUTTON};
|
||||
Loading…
Add table
Add a link
Reference in a new issue