web_next/scheduler_app/app/(routes)/dashboard/meeting/page.js

20 lines
No EOL
468 B
JavaScript

"use client"
import { Input } from '@/components/ui/input'
import React from 'react'
import MeetingEventList from './_components/MeetingEventList'
const Meeting = () => {
return (
<div className='px-5'>
<div className='flex flex-col gap-5'>
<p className='font-semibold text-xl'>Event/Meeting </p>
<Input placeholder='Search...' className='max-w-xs'/><hr/>
</div>
<MeetingEventList/>
</div>
)
}
export default Meeting