UI updates

This commit is contained in:
2022-04-27 05:10:49 -04:00
parent d444e4da7d
commit e006a7af5a
11 changed files with 107 additions and 47 deletions
+7 -9
View File
@@ -5,15 +5,13 @@ import { toListItem, mapChild } from '../util/resrec';
function Resources() {
return (
<Layout name='Resources' title='Some Useful Resources'>
<section className='block'>
{
res.map((item: Record<string, any>) => {
const lItem = toListItem(item)
if (lItem)
return mapChild(lItem, 0)
})
}
</section>
{
res.map((item: Record<string, any>) => {
const lItem = toListItem(item)
if (lItem)
return mapChild(lItem, 0)
})
}
</Layout>);
}