2023-03-04 08:10:30 -05:00
|
|
|
import React from 'react'
|
2023-03-06 07:21:29 -05:00
|
|
|
import { useTranslation } from 'react-i18next';
|
2023-03-06 09:01:18 -05:00
|
|
|
import { Link } from "react-router-dom";
|
2023-03-04 08:10:30 -05:00
|
|
|
|
2023-03-06 07:21:29 -05:00
|
|
|
export const Home: React.FC = () => {
|
|
|
|
|
const { t } = useTranslation();
|
2023-03-03 09:06:14 -05:00
|
|
|
|
|
|
|
|
return <>
|
2023-03-06 07:21:29 -05:00
|
|
|
<div className='card m-2 h-full'>
|
|
|
|
|
{t('欢迎!')}
|
2023-03-06 09:01:18 -05:00
|
|
|
<Link to='/settings' className='btn btn-primary'>{t('配置')}</Link>
|
2023-03-06 07:21:29 -05:00
|
|
|
</div>
|
2023-03-03 09:06:14 -05:00
|
|
|
</>
|
2023-03-04 06:19:24 -05:00
|
|
|
}
|