diff --git a/pages/resources.tsx b/pages/resources.tsx index 9479b24..6e51272 100644 --- a/pages/resources.tsx +++ b/pages/resources.tsx @@ -1,5 +1,6 @@ import React, { ReactElement } from 'react'; import Layout from '../components/layout'; +import style from '../styles/lists.module.css'; type listItem = { children?: listItem[] | string[]; @@ -87,17 +88,17 @@ function mapChild(obj: listItem | string, level: number) { if (typeof obj === 'string') { if (obj === '') return <>> - return
{obj.description}
: <>>} -