mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-15 01:16:38 +00:00
15 lines
318 B
TypeScript
15 lines
318 B
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import Enable2FaForm from "../../../components/Enable2FaForm";
|
|
|
|
export default function ProfileGeneralPage() {
|
|
const [open, setOpen] = useState(true);
|
|
|
|
return (
|
|
<>
|
|
{/* <Enable2FaForm open={open} setOpen={setOpen} /> */}
|
|
</>
|
|
);
|
|
}
|