Browse Source

create fire contents

itizawa 6 years ago
parent
commit
1453b1965b
1 changed files with 22 additions and 0 deletions
  1. 22 0
      src/client/js/components/Admin/MarkdownSetting/MarkDownSetting.jsx

+ 22 - 0
src/client/js/components/Admin/MarkdownSetting/MarkDownSetting.jsx

@@ -0,0 +1,22 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+import { createSubscribedElement } from '../UnstatedUtils';
+import WebsocketContainer from '../../services/WebsocketContainer';
+
+class MarkdownSetting extends React.Component {
+
+  constructor(props) {
+    super(props);
+
+    this.state = {
+      hoge:0
+    };
+  }
+
+
+  render() {
+    return <a>hogehoge</a>;
+  }
+
+}