mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
16 lines
420 B
TypeScript
16 lines
420 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>
|
|
);
|
|
}
|