import React from "react";
import {Card} from "../src/Components/Card";

/**
 * Navigation test component.
 */
export function NavTest()
{
	return (
		<Card>
			This is a navigation test.
		</Card>
	)
}