<!-- .github/pull_request_template.md --> ## Description <!-- Provide a clear description of the changes in this PR --> ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin.
11 lines
181 B
TypeScript
11 lines
181 B
TypeScript
"use server";
|
|
|
|
import Dashboard from "./Dashboard";
|
|
|
|
export default async function Page() {
|
|
const accessToken = "";
|
|
|
|
return (
|
|
<Dashboard accessToken={accessToken} />
|
|
);
|
|
}
|