Last active
July 12, 2021 23:37
-
-
Save jonasantonelli/721829bb6c78b6a911a5d28d913e88cd to your computer and use it in GitHub Desktop.
Styled Component - Using the shorthand tag name 'ul'
This file contains 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
import styled from 'styled-components' | |
/* | |
* Using the shorthand tag name 'ul' | |
*/ | |
const UnorderedList = styled.ul` | |
list-style: none; | |
li { | |
margin-bottom: 7px; | |
} | |
` | |
export default () => ( | |
<UnorderedList> | |
<li>...<li> | |
</UnorderedList> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment