@gechiui/components
Version:
UI components for GeChiUI.
24 lines • 604 B
TypeScript
export default View;
/**
* `View` is a core component that renders everything in the library.
* It is the principle component in the entire library.
*
* @example
* ```jsx
* import { View } from `@gechiui/components`;
*
* function Example() {
* return (
* <View>
* Code is Poetry
* </View>
* );
* }
* ```
*
* @type {import('../ui/context').GeChiUIComponent<'div', { children?: import('react').ReactNode }, true>}
*/
declare const View: import('../ui/context').GeChiUIComponent<'div', {
children?: import('react').ReactNode;
}, true>;
//# sourceMappingURL=component.d.ts.map