import React from 'react' import List from '../_list' import ListItem from '../_list_item' const ListLg = (props) => { return ( <> {'Item 1'} {'Item 2'} {'Item 3'} {'Item 4'} {'Item 5'} ) } export default ListLg