You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
373 B
19 lines
373 B
5 years ago
|
/** @jsx jsx */
|
||
|
import { jsx } from '@emotion/core';
|
||
|
import { Button } from 'antd';
|
||
|
import { useTranslation } from 'react-i18next';
|
||
|
import i18n from './i18n';
|
||
|
|
||
|
i18n.changeLanguage('en');
|
||
|
|
||
|
function JsonSchemaEditor(): JSX.Element {
|
||
|
const { t } = useTranslation();
|
||
|
return (
|
||
|
<div>
|
||
|
<Button>{t('home')}</Button>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default JsonSchemaEditor;
|