mirror of
https://github.com/mue/mue.git
synced 2026-07-14 04:24:01 +02:00
48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
|
|
import About from '../settings/sections/About';
|
|
import Language from '../settings/sections/Language';
|
|
import Search from '../settings/sections/Search';
|
|
import Greeting from '../settings/sections/Greeting';
|
|
import Time from '../settings/sections/Time';
|
|
import Quote from '../settings/sections/Quote';
|
|
import Appearance from '../settings/sections/Appearance';
|
|
import Background from '../settings/sections/Background';
|
|
|
|
import SettingsTabs from '../tabs-backend/Tabs';
|
|
|
|
export default function Settings (props) {
|
|
return (
|
|
<React.Fragment>
|
|
<SettingsTabs>
|
|
<div label='Time'>
|
|
<Time language={props.language}/>
|
|
</div>
|
|
<div label='Quote'>
|
|
<Quote language={props.language}/>
|
|
</div>
|
|
<div label='Greeting'>
|
|
<Greeting language={props.language} toastLanguage={props.toastLanguage} />
|
|
</div>
|
|
<div label='Background'>
|
|
<Background language={props.language} toastLanguage={props.toastLanguage}/>
|
|
</div>
|
|
<div label='Search'>
|
|
<Search language={props.language}/>
|
|
</div>
|
|
<div label='Appearance'>
|
|
<Appearance language={props.language} toastLanguage={props.toastLanguage}/>
|
|
</div>
|
|
<div label='Language'>
|
|
<Language language={props.language}/>
|
|
</div>
|
|
<div label='Change Log'>
|
|
<About/>
|
|
</div>
|
|
<div label='About'>
|
|
<About/>
|
|
</div>
|
|
</SettingsTabs>
|
|
</React.Fragment>
|
|
);
|
|
} |