blob: 50b773da0e3774576e0439d043841bf285002a9b [file] [log] [blame]
Adrien Béraud995e8022021-04-08 13:46:51 -04001import List from '@material-ui/core/List'
Larbi Gharibe9af9732021-03-31 15:08:01 +01002import React from 'react'
3
4class ContactList extends React.Component {
5 render() {
Larbi Gharibe9af9732021-03-31 15:08:01 +01006 return (
Adrien Béraud995e8022021-04-08 13:46:51 -04007 <List>
8
9 </List>
Larbi Gharibe9af9732021-03-31 15:08:01 +010010 )
11 }
12}
13
14export default ContactList