11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
|
import SettingsLayout from "@/layouts/SettingsLayout";
|
||
|
import React from "react";
|
||
|
|
||
|
export default function appearance() {
|
||
|
return (
|
||
|
<SettingsLayout>
|
||
|
<div>Migration</div>
|
||
|
</SettingsLayout>
|
||
|
);
|
||
|
}
|