Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. interface IAntUI {
  2.     Code: FC<ICodeProps>,
  3.     Console: {
  4.         Body: FC<IConsoleProps>;
  5.         Tab: FC<IConsoleTabProps>;
  6.     },
  7.     P: FC<IParagraphProps>;
  8.     Text: FC<ITextProps>,
  9.     H: FC<ITitleProps>,
  10.     Table: {
  11.         Body: FC<ITableProps>,
  12.         Row: FC<ITableRowProps>,
  13.     },
  14.  
  15. }
  16.  
  17. const AntUI: IAntUI = {
  18.     Code: Code,
  19.     Console: {
  20.         Body: Console,
  21.         Tab: ConsoleTab
  22.     },
  23.     P: P,
  24.     Text: Text,
  25.     H: H,
  26.     Table: {
  27.         Body: Table,
  28.         Row
  29.     },
  30. };
  31.  
  32. export {
  33.     page,
  34.     groupes,
  35.     useDocumentation,
  36.     Documentation,
  37.     AntUI
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement