9 lines
277 B
TypeScript
9 lines
277 B
TypeScript
import React, { FC } from 'react';
|
||
import { Text } from '@chakra-ui/react';
|
||
|
||
const currentYear = new Date().getFullYear();
|
||
|
||
export const Copyright: FC = () => {
|
||
return <Text color='whiteAlpha.500'>© {currentYear} DryMaster. Все права защищены</Text>;
|
||
};
|