mirror of
https://github.com/supabase/supabase.git
synced 2026-06-13 01:39:53 +08:00
* Adjust prompt, ui * Account for seconds properly * More minute adjustments * Account for seconds properly, again * Lint --------- Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
18 lines
602 B
TypeScript
18 lines
602 B
TypeScript
export default function CronSyntaxChart() {
|
|
return (
|
|
<div>
|
|
<pre className="text-xs font-mono text-foreground-light">
|
|
{/* prettier-ignore */}
|
|
{`
|
|
┌───────────── minute (0 - 59)
|
|
│ ┌───────────── hour (0 - 23)
|
|
│ │ ┌───────────── day of month (1 - 31)
|
|
│ │ │ ┌───────────── month (1 - 12)
|
|
│ │ │ │ ┌───────────── day of week (0 - 7)
|
|
│ │ │ │ │
|
|
* * * * * `}
|
|
</pre>
|
|
</div>
|
|
)
|
|
}
|