11 lines
146 B
JavaScript
11 lines
146 B
JavaScript
// @flow
|
|
import styled from "styled-components";
|
|
|
|
const List = styled.ol`
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
`;
|
|
|
|
export default List;
|