From 24f4b5847f2da76b1679bb07bda322982008b247 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 7 Oct 2021 18:47:43 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Add=20flavour=20text=20to=20`Not?= =?UTF-8?q?ebookListBox`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/notebook/NotebookListBox.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/notebook/NotebookListBox.tsx b/frontend/src/components/notebook/NotebookListBox.tsx index cbab9a9..77cde43 100644 --- a/frontend/src/components/notebook/NotebookListBox.tsx +++ b/frontend/src/components/notebook/NotebookListBox.tsx @@ -11,13 +11,14 @@ export interface NotebookListBoxProps { export function NotebookListBox({viewSet}: NotebookListBoxProps): JSX.Element { - // TODO: Add some flavour text - return ( Notebooks +

+ Notebooks are interactive Python documents that you can edit in your browser and run on Sophon server. +

{viewSet.resources?.map(res => )}
)