13 lines
192 B
TypeScript
13 lines
192 B
TypeScript
import Patcher from "@/components/patcher/page";
|
|
import React from "react";
|
|
|
|
const PatcherPage = () => {
|
|
return (
|
|
<div>
|
|
<Patcher />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PatcherPage;
|