react-server675fbba4
react-serverfilesexamplesmantinesrcpagescode.tsx
examples/mantine/src/pages/code.tsxtsx467 Bf061ebe7
import "@mantine/code-highlight/styles.css";

import MyCodeHighlight from "../components/MyCodeHighlight";

export default async function FormsPage() {
  const data = await getData();

  return (
    <div>
      <title>{data.title}</title>
      <h1>{data.headline}</h1>
      <MyCodeHighlight />
    </div>
  );
}

const getData = async () => {
  const data = {
    title: "Ext / Code Highlight",
    headline: "Extensions / Code Highlight",
  };

  return data;
};