// eslint-disable-next-line @typescript-eslint/no-unused-vars import React, { useState } from 'react'; // import styled from 'styled-components'; // import Button from '../lib/Button/Button'; // import Modal from '../lib/Modal/Modal'; // // const Wrap = styled.div` // display: flex; // flex-direction: column; // gap: 50px; // `; // const Home: React.FC = () => { // const [isModalVisible, setIsModalVisible] = useState(false); // const [isModalVisible2, setIsModalVisible2] = useState(false); // const showModal = () => { // setIsModalVisible(true); // }; // // const handleOk = () => { // setIsModalVisible(false); // console.log('确定'); // }; // // const handleCancel = () => { // setIsModalVisible(false); // console.log('取消'); // }; // // const showModal2 = () => { // setIsModalVisible2(true); // }; // const handleOk2 = () => { // setIsModalVisible2(false); // console.log('确定'); // }; // // const handleCancel2 = () => { // setIsModalVisible2(false); // console.log('取消'); // }; // return ( // //
// // //

Some contents...

//

Some contents...

//

Some contents...

//
//
//
// // //

Some contents...

//

Some contents...

//

Some contents...

//
//
//
// ); // }; // // export default Home;