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} - -
  • -)