Make prop available

This commit is contained in:
Thomas Gideon 2021-09-19 11:17:22 -04:00
parent dd6df30370
commit ee3ec17314
2 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@ mod group;
mod props;
mod textarea;
use self::props::Props;
pub use self::props::Props;
pub use self::{group::InputGroup, textarea::TextArea};
use crate::{prelude::*, render};
use std::fmt::{Display, Formatter, Result as FmtResult};

View File

@ -19,6 +19,7 @@ pub use self::{
form::FormGroup,
input::{Input, InputGroup, TextArea},
jumbotron::Jumbotron,
props::Props,
};
#[cfg(test)]