mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 20:23:04 +02:00
25 lines
752 B
JavaScript
25 lines
752 B
JavaScript
import 'bootstrap/dist/css/bootstrap.min.css';
|
|
|
|
import Button from 'react-bootstrap/Button'
|
|
import Form from 'react-bootstrap/Form'
|
|
import React from "react";
|
|
|
|
export default function CreateEntry() {
|
|
return (
|
|
<Form>
|
|
<Form.Group className="mb-3" controlId="formText">
|
|
<Form.Label>Entry Title</Form.Label>
|
|
<Form.Control type="text" placeholder="Enter Entry Title" />
|
|
</Form.Group>
|
|
|
|
<Form.Group className="mb-3" controlId="formText">
|
|
<Form.Label>Entry</Form.Label>
|
|
<Form.Control type="text" class="mh-100" placeholder="Enter Entry" />
|
|
</Form.Group>
|
|
|
|
<Button variant="primary" type="submit">
|
|
Submit
|
|
</Button>
|
|
</Form>
|
|
)
|
|
} |