({ children }: { children: ReactNode })
| 272 | } |
| 273 | |
| 274 | function SectionTitle({ children }: { children: ReactNode }) { |
| 275 | return ( |
| 276 | <h4 |
| 277 | style={{ |
| 278 | fontSize: "0.9rem", |
| 279 | fontWeight: 800, |
| 280 | color: "var(--text-primary)", |
| 281 | margin: 0, |
| 282 | }} |
| 283 | > |
| 284 | {children} |
| 285 | </h4> |
| 286 | ); |
| 287 | } |
| 288 | |
| 289 | export function CronJobCard({ |
| 290 | job, |
nothing calls this directly
no outgoing calls
no test coverage detected