Created
April 6, 2019 23:36
-
-
Save gullinbursti/e40850ae57ca113b638c3da84159870d to your computer and use it in GitHub Desktop.
Design Engine auto generated linted syntax v1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* JSX Generator v1.0 | |
* Code snippets by Design Engine. | |
* Made in Mountain View, CA. | |
**//* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */ | |
import React, { Component } from 'react'; | |
import './Signup.css'; | |
import axios from 'axios'; | |
import qs from 'qs' | |
import { Column, Row } from 'simple-flexbox'; | |
const wrapper = React.createRef(); | |
const MainText = (props)=> { | |
return (<div className="maintext-wrapper"> | |
<div className="maintext-text">Sign up</div> | |
</div>); | |
}; | |
const Button:back = (props)=> { | |
return (<div className="buttonback-wrapper"> | |
<img className="buttonback-image" src="./images/[email protected]" alt="button:back" /> | |
</div>); | |
}; | |
const Title = (props)=> { | |
return (<div className="title-wrapper"> | |
<div className="title-text">Back</div> | |
</div>); | |
}; | |
class Signup extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
}; | |
} | |
render() { | |
return (<div className="signup"> | |
<MainText /> | |
<Button:back /> | |
<Title /> | |
</div>); | |
} | |
} | |
export default Signup; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment