13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
// This ensures this component is rendered only on the client side
|
|
'use client';
|
|
|
|
import React from 'react';
|
|
|
|
export default function ApprovePage() {
|
|
return (
|
|
<div>
|
|
{/* This page will now be rendered on the client-side */}
|
|
<h1>Approve</h1>
|
|
</div>
|
|
);
|
|
} |