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