updated route sites available
This commit is contained in:
@@ -4,15 +4,12 @@ import { PageProps } from "./interFaces";
|
||||
function App000001({ lang, queryParams }: PageProps) {
|
||||
return (
|
||||
<>
|
||||
<div className="flex flex-col w-3/4">
|
||||
<div className="flex">
|
||||
{/* Sticky Header */}
|
||||
<header className="sticky top-0 bg-white shadow-md z-10 p-4 flex justify-between items-center">
|
||||
<h1 className="text-2xl font-semibold">Dashboard</h1>
|
||||
<div className="flex items-center space-x-4">
|
||||
{JSON.stringify({
|
||||
lang,
|
||||
queryParams,
|
||||
})}
|
||||
{JSON.stringify({ lang, queryParams })}
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Search..."
|
||||
|
||||
@@ -8,7 +8,7 @@ export const PageIndexs = {
|
||||
app000001: App000001,
|
||||
};
|
||||
|
||||
function UnAuthorizedPage({ lang }: PageProps) {
|
||||
function UnAuthorizedPage({ lang, queryParams }: PageProps) {
|
||||
return (
|
||||
<>
|
||||
<div className="flex flex-col h-screen">
|
||||
|
||||
Reference in New Issue
Block a user