Skip to content

Commit

Permalink
set use client
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroramos17 committed Oct 1, 2024
1 parent 6437756 commit e6ba27c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app/estacionamento/historico/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import BookingList from "@/lib/features/bookings/BookingList";

export default function Page() {
Expand Down
2 changes: 2 additions & 0 deletions src/app/estacionamento/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import BookingPage from "@/lib/features/bookings/Booking";

interface BookingPageProps {
Expand Down
2 changes: 2 additions & 0 deletions src/app/motoristas/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import CustomerForm from '@/lib/features/customers/CustomerForm';

export default function EditFormDriver({ params }: Readonly<{ params: { id: string } }>) {
Expand Down
2 changes: 2 additions & 0 deletions src/app/motoristas/criar/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import CustomerForm from '@/lib/features/customers/CustomerForm';

export default function CreateDriver() {
Expand Down
2 changes: 2 additions & 0 deletions src/app/pedidos/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import OrderList from "@/lib/features/orders/OrderList";

export default function Page() {
Expand Down

0 comments on commit e6ba27c

Please sign in to comment.