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

26 lines
403 B

  1. export const Section = ({ children, title }) => (
  2. <section>
  3. <div className="container mx-auto px-4">
  4. <h1>
  5. {title}
  6. </h1>
  7. <div>
  8. {children}
  9. </div>
  10. </div>
  11. </section>
  12. );
  13. export const Subsection = ({ children, title }) => (
  14. <section>
  15. <div>
  16. <h2>
  17. {title}
  18. </h2>
  19. <div>
  20. {children}
  21. </div>
  22. </div>
  23. </section>
  24. );