CronSyntaxChart.tsx17 lines · main
1export default function CronSyntaxChart() {
2 return (
3 <div>
4 <pre className="text-xs font-mono text-foreground-light">
5 {/* prettier-ignore */}
6 {`
7 ┌───────────── minute (0 - 59)
8 │ ┌───────────── hour (0 - 23)
9 │ │ ┌───────────── day of month (1 - 31)
10 │ │ │ ┌───────────── month (1 - 12)
11 │ │ │ │ ┌───────────── day of week (0 - 7)
12 │ │ │ │ │
13 * * * * * `}
14 </pre>
15 </div>
16 )
17}