Skip to content

Commit

Permalink
feat: adding API folder to make BFF
Browse files Browse the repository at this point in the history
  • Loading branch information
saagomes_meli committed Jul 21, 2024
1 parent 060a827 commit eb7d9ab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontend/src/app/(mentoring)/mentoring.view.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export function MentoringView() {
return <div></div>
}
7 changes: 7 additions & 0 deletions frontend/src/app/api/exempla/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { NextResponse } from 'next/server'

export function GET() {
return NextResponse.json({
test: 'test',
})
}

0 comments on commit eb7d9ab

Please sign in to comment.