From da234b02e1248b0e4a33ebd3ad8b8a48a3f0a51f Mon Sep 17 00:00:00 2001 From: Tsu-ba-me Date: Tue, 20 Jun 2023 02:15:41 -0400 Subject: [PATCH] fix(striker-ui): remove unused prepare host/network pages --- striker-ui/pages/prepare-host/index.tsx | 29 ---------------------- striker-ui/pages/prepare-network/index.tsx | 29 ---------------------- 2 files changed, 58 deletions(-) delete mode 100644 striker-ui/pages/prepare-host/index.tsx delete mode 100644 striker-ui/pages/prepare-network/index.tsx diff --git a/striker-ui/pages/prepare-host/index.tsx b/striker-ui/pages/prepare-host/index.tsx deleted file mode 100644 index d5b00c77..00000000 --- a/striker-ui/pages/prepare-host/index.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import Head from 'next/head'; -import { FC } from 'react'; - -import Header from '../../components/Header'; -import Grid from '../../components/Grid'; -import PrepareHostForm from '../../components/PrepareHostForm'; - -const PrepareHost: FC = () => ( - <> - - Prepare Host - -
- , - md: 2, - sm: 4, - xs: 1, - }, - }} - /> - -); - -export default PrepareHost; diff --git a/striker-ui/pages/prepare-network/index.tsx b/striker-ui/pages/prepare-network/index.tsx deleted file mode 100644 index 853d67b4..00000000 --- a/striker-ui/pages/prepare-network/index.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import Head from 'next/head'; -import { FC } from 'react'; - -import Grid from '../../components/Grid'; -import Header from '../../components/Header'; -import PrepareNetworkForm from '../../components/PrepareNetworkForm'; - -const PrepareNetwork: FC = () => ( - <> - - Prepare Network - -
- , - md: 2, - sm: 4, - xs: 1, - }, - }} - /> - -); - -export default PrepareNetwork;