react-server675fbba4
react-serverfilesexamplesmantinesrcpagesspotlight.tsx
examples/mantine/src/pages/spotlight.tsxtsx447 Bc31b2cb9
import "@mantine/spotlight/styles.css";

import MySpotlight from "../components/MySpotlight";

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

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

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

  return data;
};