tony.cheng
2026-03-04 937d76a3c33b99c0ca96645bf365b7aa40204f83
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;