pub mod component;
pub mod error;
pub mod props;
pub use component::{Component, RenderContext, RenderedNode};
pub use error::PachyError;
pub use props::Props;
pub type Result<T> = std::result::Result<T, PachyError>;
pub struct PageRegistration {
pub module_path: &'static str,
pub factory: fn() -> Box<dyn Component>,
}
inventory::collect!(PageRegistration);