new settingspage sidebar with general and moviesettings

This commit is contained in:
2020-06-25 22:43:26 +02:00
parent afae31618c
commit fdfb36bcd2
6 changed files with 203 additions and 60 deletions

View File

@@ -0,0 +1,19 @@
import React from "react";
class GeneralSettings extends React.Component {
constructor(props) {
super(props);
this.state = {};
}
render() {
return (
<>
Generalsettings here
</>
);
}
}
export default GeneralSettings;