Pārlūkot izejas kodu

created new tsx file

kaori 4 gadi atpakaļ
vecāks
revīzija
55c2da72f5
1 mainītis faili ar 15 papildinājumiem un 0 dzēšanām
  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>
+  );
+};