|
@@ -7,6 +7,7 @@ import AppContainer from '../../../services/AppContainer';
|
|
|
|
|
|
|
|
import { createSubscribedElement } from '../../UnstatedUtils';
|
|
import { createSubscribedElement } from '../../UnstatedUtils';
|
|
|
import CustomizeLayoutSetting from './CustomizeLayoutSetting';
|
|
import CustomizeLayoutSetting from './CustomizeLayoutSetting';
|
|
|
|
|
+import CustomizeBehaviorSetting from './CustomizeBehaviorSetting';
|
|
|
|
|
|
|
|
class Customize extends React.Component {
|
|
class Customize extends React.Component {
|
|
|
|
|
|
|
@@ -18,10 +19,9 @@ class Customize extends React.Component {
|
|
|
<div className="row my-3">
|
|
<div className="row my-3">
|
|
|
<CustomizeLayoutSetting />
|
|
<CustomizeLayoutSetting />
|
|
|
</div>
|
|
</div>
|
|
|
- <legend>{t('customize_page.Behavior')}</legend>
|
|
|
|
|
- {/* 挙動フォームの react componentをここで呼ぶ(GW-246) */}
|
|
|
|
|
- <legend>{t('customize_page.Function')}</legend>
|
|
|
|
|
- {/* 機能フォームの react componentをここで呼ぶ(GW-276) */}
|
|
|
|
|
|
|
+ <div className="row my-3">
|
|
|
|
|
+ <CustomizeBehaviorSetting />
|
|
|
|
|
+ </div>
|
|
|
<legend>{t('customize_page.Code Highlight')}</legend>
|
|
<legend>{t('customize_page.Code Highlight')}</legend>
|
|
|
{/* コードハイライトフォームの react componentをここで呼ぶ(GW-277) */}
|
|
{/* コードハイライトフォームの react componentをここで呼ぶ(GW-277) */}
|
|
|
<legend>{t('customize_page.custom_title')}</legend>
|
|
<legend>{t('customize_page.custom_title')}</legend>
|