sandbox/qwik-app/src/routes/index.tsx

20 lines
410 B
TypeScript
Raw Normal View History

2022-11-24 15:50:41 +00:00
import { component$ } from '@builder.io/qwik';
import type { DocumentHead } from '@builder.io/qwik-city';
import { Link } from '@builder.io/qwik-city';
2022-11-24 18:33:24 +00:00
import Map from '../components/map';
2022-11-24 15:50:41 +00:00
2022-11-24 18:33:24 +00:00
export default component$(() => {
return <Map />;
2022-11-24 15:50:41 +00:00
});
export const head: DocumentHead = {
title: 'Welcome to Qwik',
meta: [
{
name: 'description',
content: 'Qwik site description',
},
],
};