openpanel/packages/live-previews/pages/index.tsx
Stefan Pejcic 8595a9f4e5 back
2024-05-08 19:58:53 +02:00

19 lines
544 B
TypeScript

import React from "react";
export default function Index(): JSX.Element {
return (
<div className="page__wrapper index">
<div className="page__content">
<h1>Refine Live Previews</h1>
<p>
This app serves the live previews of the Refine
documentation.
</p>
<a href="https://refine.dev" target="_blank" rel="noreferrer">
Visit Refine
</a>
</div>
</div>
);
}