import React from 'react'; import List from './components/list' import router from 'umi/router'; const Index = () => { const dataSource = [ { id: 1, image: '/images/exam1.png', title: '2020版中西医结合执业助理医师 模拟试', like: 0, share: 1, }, { id: 2, image: '/images/exam1.png', title: '2020版中西医结合执业助理医师 模拟试', like: 0, share: 0, }, { id: 3, image: '/images/exam1.png', title: '2020版中西医结合执业助理医师 模拟试', like: 1, share: 1, }, ]; const onClickLike = id => { }; const onClickShare = id => { console.log(id); }; const onClickButton = (id,e) => { e.preventDefault() return router.push('/exam/question/list'); }; const opt={ dataSource, buttonLable:"立即答题", onClickLike, onClickShare, onClickButton } return ( <> ); } export default Index;