Core/demo/NavTest.tsx

15 lines
203 B
TypeScript
Raw Normal View History

import React from "react";
import {Card} from "../src/Components/Card";
/**
* Navigation test component.
*/
export function NavTest()
{
return (
<Card>
This is a navigation test.
</Card>
)
}