Files
crypto-bot-admin/src/pages/main/components/page/Page.tsx
2021-06-13 14:58:46 +03:00

14 lines
274 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React, {memo} from 'react';
const MainPage: React.FC = () => {
return (
<div>
<div>Админка Crypto-bot v1</div>
<div>Выбирите нужный раздел</div>
</div>
);
};
export default memo(MainPage);