20 lines
337 B
TypeScript
20 lines
337 B
TypeScript
"use client"
|
|
|
|
import LanguagePortal from "@/components/dashboard/admin/Configuration/language";
|
|
import ModulesPortal from "@/components/dashboard/admin/Configuration/modules";
|
|
|
|
|
|
|
|
|
|
|
|
export default function LanguagePage() {
|
|
return (
|
|
|
|
|
|
<div className="p-8 mx-3">
|
|
<LanguagePortal/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |