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

20 lines
410 B
TypeScript

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