We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2df5907 commit cca274bCopy full SHA for cca274b
src/app/converter.tsx
@@ -1,5 +1,7 @@
1
import React, { useState } from "react";
2
3
+import { Button } from "@/components/ui/button";
4
+import { FileUpload } from "@/components/ui/file-upload";
5
import init, { convert } from "@libresplit/libresplit-converter";
6
import wasmUrl from "@libresplit/libresplit-converter/libresplit_converter_bg.wasm?url";
7
@@ -48,5 +50,12 @@ export function Converter() {
48
50
URL.revokeObjectURL(url);
49
51
};
52
- return <p>Placeholder page for converter.</p>;
53
+ return (
54
+ <div className="-mt-20 flex h-screen w-screen flex-col items-center justify-center">
55
+ <Button>Convert</Button>
56
+ <div className="px-8">
57
+ <FileUpload />
58
+ </div>
59
60
+ );
61
}
0 commit comments