You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
472 B

'use client'
import CommonContainer from "@/components/(dashboard)/elements/CommonContainer"
import AppContextProvider from "@/helpers/context/AppContextProvider"
import AdminView from "@/views/AdminView"
const DashBoardIndexPage = () => {
return(
<>
<AppContextProvider>
<AdminView>
<CommonContainer>
<h2>hello</h2>
</CommonContainer>
</AdminView>
</AppContextProvider>
</>
)
}
export default DashBoardIndexPage