From 9014b5ec53120f3741dd8938c96988f16f06c36f Mon Sep 17 00:00:00 2001 From: oti Date: Thu, 13 Jun 2024 20:44:42 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=B8=8D=E8=A6=81=E3=81=AB=E3=81=AA?= =?UTF-8?q?=E3=81=A3=E3=81=9F=E5=86=85=E9=83=A8=E3=82=B3=E3=83=B3=E3=83=9D?= =?UTF-8?q?=E3=83=BC=E3=83=8D=E3=83=B3=E3=83=88=E3=82=92=E5=89=8A=E9=99=A4?= =?UTF-8?q?=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/ErrorScreen/Footer.tsx | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 packages/smarthr-ui/src/components/ErrorScreen/Footer.tsx diff --git a/packages/smarthr-ui/src/components/ErrorScreen/Footer.tsx b/packages/smarthr-ui/src/components/ErrorScreen/Footer.tsx deleted file mode 100644 index a8b61e8806..0000000000 --- a/packages/smarthr-ui/src/components/ErrorScreen/Footer.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import React from 'react' - -import { Cluster } from '../Layout' -import { TextLink } from '../TextLink' - -import type { ComponentProps, ComponentPropsWithoutRef, FC } from 'react' - -export const Footer: FC> = (props) => ( - - - ヘルプ - お知らせ - 利用規約 - プライバシーポリシー - 運営会社 - 開発者向けAPI - - © SmartHR, Inc. - -) - -const Item: FC> = ({ children, href }) => ( -
  • - - {children} - -
  • -)