File size: 274 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import * as React from 'react'
import { codeToHtml } from 'shiki'
const code = 'const a = 1' // input code
export default async function Home() {
const html = await codeToHtml(code, {
lang: 'javascript',
theme: 'vitesse-dark',
})
return <pre>{html}</pre>
}
|