This commit is contained in:
2018-09-14 08:44:16 +02:00
parent d648ed1883
commit 38ddd9a832
5 changed files with 179 additions and 21 deletions

View File

@ -0,0 +1,70 @@
import React, {Component} from 'react';
import jss from 'jss';
import preset from 'jss-preset-default';
/*
* Functions import
*/
/*
* Component imports
*/
jss.setup(preset());
/*
###############################
Components -- START
###############################
*/
/*
###############################
Components -- END
###############################
*/
class PasswordManager extends Component {
constructor(props){
super(props);
//Initial loading screen
/*
* Expected props
* - /
*/
//Styles
this.styles = this.getStyles();
this.sheet = jss.createStyleSheet(this.styles);
const {classes} = this.sheet.attach();
this.classes = classes;
//Styles
}
componentWillUnmount() {
this.sheet.detach()
}
render() {
return(
<div>
PasswordManager
</div>
);
}
getStyles() {
return {
}
}
}
export default PasswordManager;