12 lines
249 B
TypeScript
12 lines
249 B
TypeScript
import type { Route } from './+types/route'
|
|
|
|
import { Card, CardContent } from '@repo/ui/components/ui/card'
|
|
|
|
export default function Route({}: Route.ComponentProps) {
|
|
return (
|
|
<Card>
|
|
<CardContent>address</CardContent>
|
|
</Card>
|
|
)
|
|
}
|