link-stack/apps/link/app/(main)/_components/Home.tsx

13 lines
243 B
TypeScript
Raw Normal View History

2023-06-26 10:07:12 +00:00
"use client";
import { FC } from "react";
2024-06-05 08:52:41 +02:00
import { OpenSearchWrapper } from "@link-stack/leafcutter-ui";
2023-06-26 10:07:12 +00:00
2024-11-28 08:27:20 +01:00
type HomeProps = {
url: string;
};
export const Home: FC<HomeProps> = ({ url }) => (
<OpenSearchWrapper url={url} margin={0} />
2024-03-17 12:58:25 +01:00
);