tony.cheng
2026-02-05 c17c80a5d4b4ceb8f4347e43da14c0c31c0615f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react';
import { List } from 'antd';
import LawCard from './LawCard';
 
const LawList = ({ list }) => {
  return (
    <List
      dataSource={list}
      renderItem={(item) => (
        <List.Item>
          <LawCard lawItem={item} />
        </List.Item>
      )}
    />
  );
};
 
export default LawList;