import React from 'react';
import { NavBar, List } from 'antd-mobile';
import { useHistory } from 'react-router-dom';
import { exampleList } from './staticData';
const App = () => {
const { Item } = List;
const history = useHistory();
return (
<>
fast-scroll示例列表
{exampleList.map(el => (
- {
history.push(el.path);
}}
>
{el.name}
))}
>
);
};
export default App;