diff --git a/webapp/app.jsx b/webapp/app.jsx
index 96d7df5..680f149 100644
--- a/webapp/app.jsx
+++ b/webapp/app.jsx
@@ -234,8 +234,44 @@ var Users = React.createClass({
})
var Settings = React.createClass({
+ getInitialState: function(){
+ // get from localstorage
+ return { addr: 'localhost', port: '5001' }
+ },
+ save: function(){
+ // write to localstorage
+
+ },
+ setDefaults: function(){
+ this.setState({ addr: 'localhost', port: '5001' })
+ },
+ onChange: function(event){
+ console.log(event.target.id)
+ //this.setState({})
+ },
render: function(){
- return
Use this page to customize the application's behavior. For now, you can change how it connects to IPFS.
+All settings are saved in your browser.
+