9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
|
|
"use client";
|
||
|
|
import { redirect } from "@/components/navigation";
|
||
|
|
const Backend = () => {
|
||
|
|
redirect("/ecommerce/frontend");
|
||
|
|
return null;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Backend;
|