11 lines
285 B
TypeScript
11 lines
285 B
TypeScript
// Path: Frontend/src/routes/workspace/settings/index.tsx
|
|
|
|
import { Navigate } from "@solidjs/router";
|
|
import { type JSX } from "solid-js";
|
|
|
|
const WorkspaceSettingsIndexRoute = (): JSX.Element => {
|
|
return <Navigate href="/settings" />;
|
|
};
|
|
|
|
export default WorkspaceSettingsIndexRoute;
|