16 lines
340 B
JavaScript
16 lines
340 B
JavaScript
import React from 'react'
|
|
|
|
class SignupView extends React.Component {
|
|
render() {
|
|
return (
|
|
<form>
|
|
<input type="text" placeholder="Username"/>
|
|
<input type="text" placeholder="Email"/>
|
|
<input type="password" placeholder="Password"/>
|
|
<input type="submit" value="Sign Up" />
|
|
</form>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default SignupView;
|