This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/app/components/List/List.js
2018-05-22 23:01:49 -07:00

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;