1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-12-22 14:54:22 +00:00

🔧 Add flavour text to ProjectListBox

This commit is contained in:
Steffo 2021-10-07 18:43:37 +02:00
parent 17d138b61f
commit de3624d72c

View file

@ -11,13 +11,14 @@ export interface ProjectListBoxProps {
export function ProjectListBox({viewSet}: ProjectListBoxProps): JSX.Element {
// TODO: Add some flavour text
return (
<Box>
<Heading level={3}>
Research projects
</Heading>
<p>
Research projects are containers for all kind of research data pertaining to a specific topic.
</p>
{viewSet.resources?.map(res => <ProjectResourcePanel resource={res} key={res.value.slug}/>)}
</Box>
)