midorimici/fairy-chess-online

View on GitHub
src/components/atoms/Footer/Footer.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { Center } from '@chakra-ui/react';

type Props = {
  children: React.ReactNode;
};

export const Footer: React.FC<Props> = ({ children }) => <Center>{children}</Center>;