Design system.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
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. };