We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d3bd3d commit e448d3aCopy full SHA for e448d3a
src/app/converter.tsx
@@ -1,6 +1,7 @@
1
import { useState } from "react";
2
3
import AppFileSelect from "@/components/libresplit/AppFileSelect";
4
+import { AppMarkdownCodeBlock } from "@/components/libresplit/AppMarkdownCodeBlock";
5
import init, { convert } from "@libresplit/libresplit-converter";
6
import wasmUrl from "@libresplit/libresplit-converter/libresplit_converter_bg.wasm?url";
7
@@ -68,6 +69,8 @@ export function Converter() {
68
69
Download Splits
70
</button>
71
</div>
72
+
73
+ {result && <AppMarkdownCodeBlock code={result} language="json" />}
74
75
);
76
}
0 commit comments