mirror of
https://github.com/mue/mue.git
synced 2026-07-16 05:23:49 +02:00
19 lines
453 B
JavaScript
19 lines
453 B
JavaScript
import React from 'react';
|
|
import SettingsFunctions from '../../../../modules/helpers/settings';
|
|
import Section from '../Section';
|
|
import Dropdown from '../Dropdown';
|
|
|
|
export default class DateSettings extends React.PureComponent {
|
|
componentDidMount() {
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<React.Fragment>
|
|
<Section title={this.props.language.date.title} name='date'>
|
|
settings
|
|
</Section>
|
|
</React.Fragment>
|
|
);
|
|
}
|
|
} |