|
|
@@ -0,0 +1,15 @@
|
|
|
+import React, { FC } from 'react';
|
|
|
+import { useTranslation } from 'react-i18next';
|
|
|
+import PropTypes from 'prop-types';
|
|
|
+
|
|
|
+
|
|
|
+type Props = {
|
|
|
+}
|
|
|
+
|
|
|
+export const EditorSettings: FC<Props> = () => {
|
|
|
+ const { t } = useTranslation();
|
|
|
+
|
|
|
+ return (
|
|
|
+ <div>hge</div>
|
|
|
+ );
|
|
|
+};
|