You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
446 B

import React, { Component } from "react";
import { connect } from "react-redux";
import { Container } from "semantic-ui-react";
class Settings extends Component {
render() {
return <SettingsView />;
}
}
function mapStateToProps(state) {
return { ...state.auth };
}
const SettingsView = () => (
<Container>
<h1>Settings</h1>
<p>todo, change password</p>
</Container>
);
export default connect(mapStateToProps)(Settings);