diff options
Diffstat (limited to 'src/components/WidgetParts/List/List.tsx')
| -rw-r--r-- | src/components/WidgetParts/List/List.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/WidgetParts/List/List.tsx b/src/components/WidgetParts/List/List.tsx new file mode 100644 index 0000000..317c4d1 --- /dev/null +++ b/src/components/WidgetParts/List/List.tsx @@ -0,0 +1,7 @@ +import styles from './List.module.scss'; + +const List = ({ items }: { items: Array<any> }) => { + return <ul className={styles.list}>{items}</ul>; +}; + +export default List; |
