30 lines
857 B
TypeScript
30 lines
857 B
TypeScript
import type { WorksheetDefinition } from './types';
|
|
|
|
export const CLOCK_READING_WORKSHEET_DEFINITIONS = [
|
|
{
|
|
id: 'clock-reading',
|
|
icon: 'clock',
|
|
title: '认识时钟',
|
|
subtitle: '看钟读时间,填写数字时刻',
|
|
ageMin: 4,
|
|
ageMax: 7,
|
|
difficulty: 2,
|
|
tags: ['数学', '钟表', '时间'],
|
|
sortOrder: 127,
|
|
},
|
|
] as const satisfies ReadonlyArray<WorksheetDefinition>;
|
|
|
|
export const CLOCK_CONNECT_WORKSHEET_DEFINITIONS = [
|
|
{
|
|
id: 'clock-connect',
|
|
icon: 'clock',
|
|
title: '时钟连线',
|
|
subtitle: '看钟表连对应时间,认识时刻',
|
|
ageMin: 4,
|
|
ageMax: 7,
|
|
difficulty: 2,
|
|
tags: ['数学', '钟表', '时间', '连线'],
|
|
sortOrder: 128,
|
|
},
|
|
] as const satisfies ReadonlyArray<WorksheetDefinition>;
|