kcscDev/egovframe-template-simple-r.../src/pages/admin/config/baseCode/ChildCodeDiv.jsx

30 lines
1.0 KiB
JavaScript

import {Container} from "react-bootstrap";
import Row from "react-bootstrap/Row";
import Col from "react-bootstrap/Col";
import Form from 'react-bootstrap/Form'
import Button from "react-bootstrap/Button";
function ChildCodeDiv(){
return (
<Container className={"pt-3"}>
<Row className={"py-2 bg-light border-bottom"}>
<Col xs={4}>코드</Col>
<Col xs={4}>코드명</Col>
<Col xs={2}>삭제</Col>
<Col xs={2}>수정</Col>
</Row>
{}
<Row className={"py-1"}>
<Col xs={4}>
<Form.Control type={"text"} placeholder={"코드"} size={"sm"}/>
</Col>
<Col xs={4}>
<Form.Control type={"text"} placeholder={"코드명"} size={"sm"}/>
</Col>
<Col xs={{span:2, offset:2}}><Button type={"button"} variant={"primary"} size={"sm"}>등록</Button></Col>
</Row>
</Container>
);
}
export default ChildCodeDiv;