From 40bc7380b4a2545adce63718782ed225df9247aa Mon Sep 17 00:00:00 2001 From: James McKenzie Date: Fri, 23 Apr 2021 17:30:52 +1200 Subject: [PATCH] GracefulErrorOnNoColumn --- ReactLearning/kanban-board/src/App.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ReactLearning/kanban-board/src/App.tsx b/ReactLearning/kanban-board/src/App.tsx index 3bb8660..199d4af 100644 --- a/ReactLearning/kanban-board/src/App.tsx +++ b/ReactLearning/kanban-board/src/App.tsx @@ -72,6 +72,9 @@ class App extends React.Component<{}, State> { priority: "normal", }); } + else{ + alert("You might want to consider adding a column!") + } } render() {