Make prop available
This commit is contained in:
parent
dd6df30370
commit
ee3ec17314
2 changed files with 2 additions and 1 deletions
|
@ -2,7 +2,7 @@ mod group;
|
||||||
mod props;
|
mod props;
|
||||||
mod textarea;
|
mod textarea;
|
||||||
|
|
||||||
use self::props::Props;
|
pub use self::props::Props;
|
||||||
pub use self::{group::InputGroup, textarea::TextArea};
|
pub use self::{group::InputGroup, textarea::TextArea};
|
||||||
use crate::{prelude::*, render};
|
use crate::{prelude::*, render};
|
||||||
use std::fmt::{Display, Formatter, Result as FmtResult};
|
use std::fmt::{Display, Formatter, Result as FmtResult};
|
||||||
|
|
|
@ -19,6 +19,7 @@ pub use self::{
|
||||||
form::FormGroup,
|
form::FormGroup,
|
||||||
input::{Input, InputGroup, TextArea},
|
input::{Input, InputGroup, TextArea},
|
||||||
jumbotron::Jumbotron,
|
jumbotron::Jumbotron,
|
||||||
|
props::Props,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
|
Loading…
Reference in a new issue