feat: add html encoder / decoder

This commit is contained in:
rusconn
2022-03-29 12:55:14 +09:00
parent 7881a9c719
commit d550594b08
8 changed files with 78 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
import type { NextPage } from "next";
import { Content } from "@/components/pages/encoders-decoders/html";
const Page: NextPage = Content;
export default Page;