adminSettingsView.js
727 Bytes
import _ from 'lodash';
import { Meteor } from 'meteor/meteor';
import React, { Component } from 'react';
import { Link,browserHistory } from 'react-router';
import { FormGroup,
FormControl,Glyphicon,Button } from 'react-bootstrap';
export class AdminSettingsView extends Component {
constructor(props) {
super(props);
this.state = {
};
this.onUpdate = this.onUpdate.bind(this);
};
onUpdate(key, value) {
this.setState({[key]: value});
};
render() {
const {user, org} = this.props.data;
return (
<div className = "enterPane-box">
<h1>Settings</h1>
</div>
);
};
};