news/app/components/news/body/GrassrootsDynamics.tsx

25 lines
605 B
TypeScript

import React from 'react';
import List from '@/components/news/list/List';
export default function GrassrootsDynamics() {
return (
<div className="flex mx-auto w-5/6 h-full pt-10 mb-20 justify-between">
<div className="w-full flex items-center">
<div className="w-160 h-116">
<img
src="/images/header.png"
alt="基层动态"
className='w-full h-full'
/>
</div>
</div>
{/* 右边列表 */}
<div className="w-500 h-116 p-6 flex flex-col bg-[#0e93df] ">
<List />
</div>
</div>
);
}