Created
September 9, 2024 15:01
-
-
Save k1-c/1062ddbed8293508976002f07006db6c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Not good | |
| const Page = () => ( | |
| <main className="bg-background"> | |
| <section className="p-6"> | |
| <h1 className="text-2l font-bold">A page title</h1> | |
| <p className="text-md text-foreground">Content...</p> | |
| <ul className="list-disc"> | |
| <li>List Item 1</li> | |
| <li>List Item 2</li> | |
| </ul> | |
| </section> | |
| </main> | |
| ) | |
| // Tailwind oriented | |
| const Page = () => ( | |
| <Main> | |
| <Section> | |
| <Title as="h1">A page title</Title> | |
| <Content>Content...</Content> | |
| <List> | |
| <ListItem>List Item 1</ListItem> | |
| <ListItem>List Item 1</ListItem> | |
| </List> | |
| </Section> | |
| </Main> | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment