2025-12-02 13:45:44 +00:00
|
|
|
import { createFileRoute } from "@tanstack/react-router";
|
|
|
|
|
import Settings from "../features/settings/components/Settings";
|
2025-11-20 19:09:43 +00:00
|
|
|
|
2025-12-02 13:45:44 +00:00
|
|
|
export const Route = createFileRoute("/settings")({
|
2025-11-20 19:09:43 +00:00
|
|
|
component: RouteComponent,
|
2025-12-02 13:45:44 +00:00
|
|
|
});
|
2025-11-20 19:09:43 +00:00
|
|
|
|
|
|
|
|
function RouteComponent() {
|
2025-12-02 13:45:44 +00:00
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<Settings />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2025-11-20 19:09:43 +00:00
|
|
|
}
|