import React from 'react'; import APPCONFIG from 'constants/Config'; import TextField from 'material-ui/TextField'; import QueueAnim from 'rc-queue-anim'; class ForgotPassowrd extends React.Component { constructor() { super(); this.state = { brand: APPCONFIG.brand }; } render() { return (

{this.state.brand}

Enter the email address for your account.

We will email your username and a link to reset your password.

Reset
); } } const Page = () => (
); module.exports = Page;