Calendar.tsx 254 Bytes
Newer Older
silver47gin's avatar
silver47gin committed
1 2 3 4 5 6 7 8 9
import { NativeModules } from "react-native";

const { CalendarModule } = NativeModules;

interface CalendarModuleInterface {
  createCalendarEvent: (name: string) => Promise<string>;
}

export const Calendar = CalendarModule as CalendarModuleInterface;