OpenPanel/packages/live-previews/pages/index.tsx
2024-02-05 10:23:04 +01: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>
);
}