@numl-react/core
Version:
Core Packages of Numl React by NUML.Design.
16 lines (15 loc) • 617 B
TypeScript
/** Export all declared Atoms */
export * from '@numl-react/atoms';
/** Application Configuration Numl Tags */
export { NumlProvider, AttributeProvider, PropsProvider, ThemeProvider, } from '@numl-react/elements';
/** Exporting all declared molecules */
export * from '@numl-react/molecules';
/**
* Exporting all Atoms, Molucules and Elements,
* So that user will have flexibility to access all
* Atoms, Molecules and
*/
export * as El from '@numl-react/elements';
export * as Atoms from '@numl-react/atoms';
export * as Molecules from '@numl-react/molecules';
export * as Organisms from '@numl-react/organisms';