One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links ๐Ÿ“… calendar.xyehr.cn
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: add react hook

authored by

Evan Huang and committed by
GitHub
23c5c487 4aae39b9

+1
+1
app/(app)/app/page.tsx
··· 1 1 import Calendar from "@/components/Calendar"; 2 2 import { useIsMobile } from "@/hooks/use-mobile"; 3 + import React, { useState } from "react" 3 4 4 5 export default function Home() { 5 6 const isMobile = useIsMobile();