- Move web app into apps/web/ - Create packages/shared/ with shared types - Create plugins/decky-vault/ scaffold - Root package.json manages workspaces only
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
import type { Metadata } from "next"
|
|
import { UsersClient } from "./users-client"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Users",
|
|
}
|
|
|
|
export default function UsersPage() {
|
|
return <UsersClient />
|
|
}
|