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