Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // imports...
  2. interface IAntUI {
  3.     Code: FC<ICodeProps>;
  4.     Console: {
  5.         Body: FC<IConsoleProps>;
  6.         Tab: FC<IConsoleTabProps>;
  7.     };
  8.     P: FC<IParagraphProps>;
  9.     Text: FC<ITextProps>;
  10.     H: FC<ITitleProps>;
  11.     Table: {
  12.         Body: FC<ITableProps>;
  13.         Row: FC<ITableRowProps>;
  14.     };
  15. }
  16. declare const AntUI: IAntUI;
  17. export { page, groupes, useDocumentation, Documentation, AntUI };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement