import React, { useState } from 'react'; import {Link, useNavigate} from 'react-router-dom'; import * as EgovNet from 'api/egovFetch'; import URL from 'constants/url'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import Button from 'react-bootstrap/Button'; function Detail(){ const navigate = useNavigate(); const goToList = () => { navigate('/support/list/KCSC-QA'); }; const goToCreate = () => { navigate('/support/create/KCSC-QA'); }; return (