import { List, Typography } from '@arco-design/web-react'; import axios from 'axios'; import React, { useEffect, useState } from 'react'; import styles from './style/index.module.less'; export default function OtherList() { const [list, setList] = useState([]); function fetchList() { axios.get('/api/user/projectAndTeamList').then((res) => { setList(res.data || []); }); } useEffect(() => { fetchList(); }, []); return (