mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-11 17:29:44 +00:00

* refactor(api): rename ui subpackage name * refactor(api): update import paths for template UI schemas * chore: update dependencies and bump package versions * chore(api): bump package version to 0.1.1 * refactor(api): rename IUiIframe to IUiCustom and related types * format
17 lines
308 B
TypeScript
17 lines
308 B
TypeScript
"use client"
|
|
|
|
import { ui } from "@kksh/api/ui/custom"
|
|
import { useEffect } from "react"
|
|
|
|
export default function About() {
|
|
useEffect(() => {
|
|
ui.showBackButton("bottom-right")
|
|
}, [])
|
|
return (
|
|
<div>
|
|
<h1 className="text-xl font-bold">About Page</h1>
|
|
<a href="./">Go To Home Page</a>
|
|
</div>
|
|
)
|
|
}
|