Skip to content

Commit cca274b

Browse files
committed
Lay out new components
1 parent 2df5907 commit cca274b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/app/converter.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import React, { useState } from "react";
22

3+
import { Button } from "@/components/ui/button";
4+
import { FileUpload } from "@/components/ui/file-upload";
35
import init, { convert } from "@libresplit/libresplit-converter";
46
import wasmUrl from "@libresplit/libresplit-converter/libresplit_converter_bg.wasm?url";
57

@@ -48,5 +50,12 @@ export function Converter() {
4850
URL.revokeObjectURL(url);
4951
};
5052

51-
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+
</div>
60+
);
5261
}

0 commit comments

Comments
 (0)