mirror of
https://github.com/linkwarden/linkwarden.git
synced 2026-03-03 02:27:00 +00:00
18 lines
431 B
TypeScript
18 lines
431 B
TypeScript
import { PropsWithChildren } from "react";
|
|
import { IconSymbol } from "../ui/IconSymbol";
|
|
import ModalBase from "../ModalBase";
|
|
import { Text } from "react-native";
|
|
|
|
type Props = PropsWithChildren<{
|
|
isVisible: boolean;
|
|
onClose: () => void;
|
|
}>;
|
|
|
|
export default function AddLink({ isVisible, onClose }: Props) {
|
|
return (
|
|
// <ModalBase isVisible={isVisible} onClose={onClose}>
|
|
<Text>Hi</Text>
|
|
// </ModalBase>
|
|
);
|
|
}
|