chengmw
2026-04-02 f6b958eedcfd1ec955a8638ec8f70d01a9c05ae6
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;