فهرست منبع

create component

itizawa 6 سال پیش
والد
کامیت
4523b72530

+ 2 - 1
src/client/js/components/Admin/Customize/Customize.jsx

@@ -6,6 +6,7 @@ import { withTranslation } from 'react-i18next';
 import AppContainer from '../../../services/AppContainer';
 import AppContainer from '../../../services/AppContainer';
 
 
 import { createSubscribedElement } from '../../UnstatedUtils';
 import { createSubscribedElement } from '../../UnstatedUtils';
+import CustomizeLayoutSetting from './CustomizeLayoutSetting';
 
 
 class Customize extends React.Component {
 class Customize extends React.Component {
 
 
@@ -16,7 +17,7 @@ class Customize extends React.Component {
       <Fragment>
       <Fragment>
         <div className="row my-3">
         <div className="row my-3">
           <h2>{t('customize_page.Layout')}</h2>
           <h2>{t('customize_page.Layout')}</h2>
-          {/* レイアウトコンポーネントを設置する */}
+          <CustomizeLayoutSetting />
         </div>
         </div>
         <legend>{t('customize_page.Theme')}</legend>
         <legend>{t('customize_page.Theme')}</legend>
         {/* テーマフォームの react componentをここで呼ぶ(GW-245) */}
         {/* テーマフォームの react componentをここで呼ぶ(GW-245) */}

+ 14 - 0
src/client/js/components/Admin/Customize/CustomizeLayoutSetting.jsx

@@ -0,0 +1,14 @@
+import React from 'react';
+
+class CustomizeLayoutSetting extends React.Component {
+
+  render() {
+    return (
+      <p>test hoge</p>
+    );
+  }
+
+}
+
+
+export default CustomizeLayoutSetting;