mod sealed;
use crate::{
component,
registry::Null,
};
use core::clone;
use sealed::Sealed;
pub trait Clone: Sealed {}
impl Clone for Null {}
impl<Component, Registry> Clone for (Component, Registry)
where
Component: clone::Clone + component::Component,
Registry: Clone,
{
}