summaryrefslogtreecommitdiffstats
path: root/src/components/WidgetParts/List/List.tsx
blob: 317c4d1b08792044a6d73faf3646f0e81d2614ae (plain)
1
2
3
4
5
6
7
import styles from './List.module.scss';

const List = ({ items }: { items: Array<any> }) => {
  return <ul className={styles.list}>{items}</ul>;
};

export default List;