Created a basic home page with links, a header with a link to home, some basic reusable CSS classes. ref: N25B-38
11 lines
159 B
TypeScript
11 lines
159 B
TypeScript
import Counter from '../../components/components.tsx'
|
|
|
|
function TemplatePage() {
|
|
return (
|
|
<>
|
|
<Counter />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default TemplatePage |