Design system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 line
236 B

  1. import {FC, ReactNode} from 'react';
  2. export interface WrapperProps {
  3. children: ReactNode;
  4. }
  5. export const Wrapper: FC<WrapperProps> = ({
  6. children,
  7. }) => {
  8. return (
  9. <div className="amanuensis-wrapper">
  10. {children}
  11. </div>
  12. )
  13. };