|
@@ -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 CustomizeThemeSetting from './CustomizeThemeSetting';
|
|
|
|
|
|
|
|
class Customize extends React.Component {
|
|
class Customize extends React.Component {
|
|
|
|
|
|
|
@@ -19,8 +20,10 @@ class Customize extends React.Component {
|
|
|
<h2>{t('customize_page.Layout')}</h2>
|
|
<h2>{t('customize_page.Layout')}</h2>
|
|
|
<CustomizeLayoutSetting />
|
|
<CustomizeLayoutSetting />
|
|
|
</div>
|
|
</div>
|
|
|
- <legend>{t('customize_page.Theme')}</legend>
|
|
|
|
|
- {/* テーマフォームの react componentをここで呼ぶ(GW-245) */}
|
|
|
|
|
|
|
+ <div className="row my-3">
|
|
|
|
|
+ <h2>{t('customize_page.Theme')}</h2>
|
|
|
|
|
+ <CustomizeThemeSetting />
|
|
|
|
|
+ </div>
|
|
|
<legend>{t('customize_page.Behavior')}</legend>
|
|
<legend>{t('customize_page.Behavior')}</legend>
|
|
|
{/* 挙動フォームの react componentをここで呼ぶ(GW-246) */}
|
|
{/* 挙動フォームの react componentをここで呼ぶ(GW-246) */}
|
|
|
<legend>{t('customize_page.Function')}</legend>
|
|
<legend>{t('customize_page.Function')}</legend>
|