You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvfront-react/src/components/views/CreateBallot.js

29 lines
677 B

import React, {Component} from "react";
import { Container, Row, Col, Input } from 'reactstrap';
class CreateBallot extends Component {
constructor(props) {
super(props);
this.state = {
}
}
render(){
return(
<Container>
<Row>
<Col ><h3>Formulaire :</h3></Col>
</Row>
<Row className="mt-2">
<Col xs="12" >
<Input placeholder="Saisissez ici la question de votre vote" name="title" />
</Col>
</Row>
</Container>
)
}
}
export default CreateBallot;