RWKV-Runner/frontend/src/pages/Train.tsx

14 lines
342 B
TypeScript
Raw Normal View History

2023-05-22 02:52:06 +00:00
import React, { FC } from 'react';
import { Text } from '@fluentui/react-components';
import { useTranslation } from 'react-i18next';
2023-05-05 15:23:34 +00:00
export const Train: FC = () => {
2023-05-22 02:52:06 +00:00
const { t } = useTranslation();
2023-05-18 12:48:53 +00:00
2023-05-05 15:23:34 +00:00
return (
<div className="flex flex-col box-border gap-5 p-2">
2023-05-18 12:48:53 +00:00
<Text size={600}>{t('In Development')}</Text>
2023-05-05 15:23:34 +00:00
</div>
);
};