Skip to content

Commit

Permalink
Adding the required code structure for a react typescript functional …
Browse files Browse the repository at this point in the history
…component
  • Loading branch information
Isztof committed Sep 11, 2023
1 parent 7f161c7 commit 06e27d9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/(dashboard)/dashboard/chat/[chatId]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { FC } from 'react'

interface ProvidersProps {}

const Providers: FC<ProvidersProps> = ({}) => {
return <div>Providers</div>
}

export default Providers
9 changes: 9 additions & 0 deletions app/(dashboard)/dashboard/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { FC } from 'react'

interface ProvidersProps {}

const Providers: FC<ProvidersProps> = ({}) => {
return <div>Providers</div>
}

export default Providers

0 comments on commit 06e27d9

Please sign in to comment.