From 264adf9f4f4d5991607c75f873fb4d128caf1106 Mon Sep 17 00:00:00 2001 From: Christopher Caldwell <62559469+christopher-caldwell@users.noreply.github.com> Date: Mon, 3 Oct 2022 09:44:50 -0500 Subject: [PATCH] fix: Adding demo link and urls (#4) --- README.md | 4 ++++ demo/src/features/controlled/index.tsx | 5 ++++- demo/src/features/jira/index.tsx | 5 ++++- demo/src/features/notion/index.tsx | 5 ++++- demo/src/features/uncontrolled/index.tsx | 5 ++++- 5 files changed, 20 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 66a56dd..945a11f 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,10 @@ Shout out to all the contributors. [Here](./docs/roadmap.md) is what's in the queue. If you want to see something, [make an issue](https://github.com/christopher-caldwell/react-kanban/issues/new) +## Demo + +[Link](https://christopher-caldwell.github.io/react-kanban/controlled) + ## Setup ```bash diff --git a/demo/src/features/controlled/index.tsx b/demo/src/features/controlled/index.tsx index 8d722f2..5f5ded5 100644 --- a/demo/src/features/controlled/index.tsx +++ b/demo/src/features/controlled/index.tsx @@ -16,7 +16,10 @@ export const ControlledBoardDemo: FC = () => { return ( <> - + {controlledBoard} diff --git a/demo/src/features/jira/index.tsx b/demo/src/features/jira/index.tsx index bbfb9aa..39c10a6 100644 --- a/demo/src/features/jira/index.tsx +++ b/demo/src/features/jira/index.tsx @@ -8,7 +8,10 @@ import { Filters, renderCard, Header, renderColumnHeader } from './components' export const JiraDemo: FC = () => { return ( <> - +
diff --git a/demo/src/features/notion/index.tsx b/demo/src/features/notion/index.tsx index 3555ba3..f6b2e08 100644 --- a/demo/src/features/notion/index.tsx +++ b/demo/src/features/notion/index.tsx @@ -9,7 +9,10 @@ import { Filters, renderColumnHeader, renderCard } from './components' export const NotionDemo: FC = () => { return ( - + Kanban diff --git a/demo/src/features/uncontrolled/index.tsx b/demo/src/features/uncontrolled/index.tsx index 0ef6944..36d3aec 100644 --- a/demo/src/features/uncontrolled/index.tsx +++ b/demo/src/features/uncontrolled/index.tsx @@ -7,7 +7,10 @@ import { Source } from '@/components' export const UncontrolledBoardDemo: FC = () => { return ( <> - + )