This commit is contained in:
none
2023-03-23 16:35:20 +08:00
parent e7421f67cc
commit 9f90bd75d3
22 changed files with 190 additions and 157 deletions

View File

@@ -30,7 +30,7 @@ interface DataType {
is_lock: number;
}
export const MemberPage: React.FC = () => {
const MemberPage = () => {
const [loading, setLoading] = useState<boolean>(true);
const [page, setPage] = useState(1);
const [size, setSize] = useState(10);
@@ -303,3 +303,5 @@ export const MemberPage: React.FC = () => {
</>
);
};
export default MemberPage;