15 lines
203 B
TypeScript
15 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>
|
||
|
)
|
||
|
}
|