Work more on settings and update modal etc

Co-authored-by: Alex Sparkes <turbomarshmello@gmail.com>
Co-authored-by: Wessel Tip <discord@go2it.eu>
This commit is contained in:
David Ralph
2020-07-16 17:40:24 +01:00
parent d9a4c76a8e
commit f458a69781
14 changed files with 299 additions and 121 deletions

11
src/components/Update.jsx Normal file
View File

@@ -0,0 +1,11 @@
import React from 'react';
export default class Update extends React.Component {
render() {
return <div className="content">
<span className="closeModal" onClick={this.props.modalClose}>&times;</span>
<h1>Update</h1>
<p>Edit different components to make Mue your new tab.</p>
</div>;
}
}