Răsfoiți Sursa

created new tsx file

kaori 4 ani în urmă
părinte
comite
55c2da72f5
1 a modificat fișierele cu 15 adăugiri și 0 ștergeri
  1. 15 0
      packages/app/src/components/Me/EditorSettings.tsx

+ 15 - 0
packages/app/src/components/Me/EditorSettings.tsx

@@ -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>
+  );
+};