File size: 115 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import styled from 'styled-components';
const ListItem = styled.li`
margin: 1em 0;
`;
export default ListItem;
|
1e92f2d |
1 2 3 4 5 6 7 8 |
import styled from 'styled-components';
const ListItem = styled.li`
margin: 1em 0;
`;
export default ListItem;
|