tony.cheng
2026-02-28 344fd5ba0aa8ed78e0cb7bce41c57fc4b8b18773
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;