// This is some example code
// Edit the text area and click the button to see it highlighted
export async function tokenizeCode(code: string, lang: string, theme: Theme) {
"use server";
return <CodeBlock code={code} lang={lang} theme={theme} />;
}