33 lines
819 B
JavaScript
33 lines
819 B
JavaScript
const req = {
|
|
|
|
searchReq : [
|
|
{ type : "text", id : "INSP_ITEM", placeholder : "검사항목" },
|
|
{ type : "checkbox", id : "INSP_ITEM", label : "검사항목", checked : "checked" }
|
|
],
|
|
|
|
btn : {
|
|
excel_down : false,
|
|
excel_data : false,
|
|
excel_up : false,
|
|
filter_btn : false,
|
|
put_btn : false,
|
|
addBtn : [
|
|
{ id:"orgna_btn", value:"편성확정", disabled: true }
|
|
]
|
|
}
|
|
};
|
|
|
|
const App = () => (
|
|
<>
|
|
<div className="table-header item-header">
|
|
<Header req={req} />
|
|
</div>
|
|
<TableContainer>
|
|
<Table title={"검사항목등록"} height={"tb-height-half"}/>
|
|
<Table title={"검사항목등록2"} height={"tb-height-half"}/>
|
|
</TableContainer>
|
|
</>
|
|
);
|
|
|
|
const root = ReactDOM.createRoot(document.getElementById('root'));
|
|
root.render(<App />); |