feat: 新增幼儿测字表
This commit is contained in:
@@ -5,3 +5,4 @@ export { LETTER_TRACING_WORKSHEET_DEFINITIONS } from './letterTracing';
|
||||
export { PINYIN_DICTATION_WORKSHEET_DEFINITIONS } from './pinyin';
|
||||
export { PEN_CONTROL_WORKSHEET_DEFINITIONS } from './penControl';
|
||||
export { WORD_COLORING_WORKSHEET_DEFINITIONS } from './wordColoring';
|
||||
export { WORD_TEST_WORKSHEET_DEFINITIONS } from './wordTest';
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
import type { WorksheetDefinition } from './types';
|
||||
|
||||
export const WORD_TEST_WORKSHEET_DEFINITIONS = [
|
||||
{
|
||||
id: 'word-test-sheet',
|
||||
icon: 'todo-list-o',
|
||||
title: '测字表',
|
||||
subtitle: '按分类测识字,勾选认识的字',
|
||||
ageMin: 5,
|
||||
ageMax: 8,
|
||||
difficulty: 1,
|
||||
tags: ['测字', '识字', '汉字', '一年级'],
|
||||
sortOrder: 38,
|
||||
},
|
||||
] as const satisfies ReadonlyArray<WorksheetDefinition>;
|
||||
Reference in New Issue
Block a user