UserHistory.jsx
921 Bytes
import React, { useState, useEffect } from "react";
import { Grid, Row, Col, Table } from "react-bootstrap";
import UserDataCard from '../components/UserHistory/UserDataCard';
import UserHistoryCard from '../components/UserHistory/UserHistoryCard';
import SearchButton from "../components/UserHistory/SearchButton";
const UserHistory = (props) => {
const [userId, setUserId] = useState('0');
useEffect(() => {
// componentDidMount > 쿼리 검사하기
},[]);
return (
<div className="content">
<Grid fluid>
<Row>
<Col md={4} mdOffset={8} sm={5} smOffset={7} style={{marginBottom:15}}>
<SearchButton/>
</Col>
</Row>
<Row>
<Col md={12}>
<UserDataCard/>
</Col>
<Col md={12}>
<UserHistoryCard/>
</Col>
</Row>
</Grid>
</div>
);
};
export default UserHistory;