23 lines
570 B
TypeScript
23 lines
570 B
TypeScript
import React from 'react';
|
|
import List from '../list/List';
|
|
|
|
export default function GrassrootsDynamics() {
|
|
return (
|
|
<div className="flex bg-white rounded-2xl mx-auto w-4/5">
|
|
<div className="w-2/5 p-6 flex flex-col items-center justify-center relative">
|
|
<div >
|
|
<img
|
|
src="/images/carousel-1.jpg"
|
|
alt="基层动态"
|
|
className="w-full h-full "
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* 右边列表 */}
|
|
<div className="w-3/5 text-white p-6">
|
|
<List />
|
|
</div>
|
|
</div>
|
|
);
|
|
} |