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:
parent
17d138b61f
commit
de3624d72c
1 changed files with 3 additions and 2 deletions
|
@ -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>
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue