29 lines
743 B
TypeScript
29 lines
743 B
TypeScript
export interface UnreleasedPageEntry {
|
|
id: string;
|
|
title: string;
|
|
subtitle: string;
|
|
path: string;
|
|
}
|
|
|
|
export const UNRELEASED_PAGE_ENTRIES: UnreleasedPageEntry[] = [
|
|
// 在这里手动添加未上线页面
|
|
{
|
|
id: 'clock-reading',
|
|
title: '认识时钟',
|
|
subtitle: '看钟读时间,填写数字时刻',
|
|
path: '/mathPages/clockReading/clockReading',
|
|
},
|
|
{
|
|
id: 'pen-control-sheet',
|
|
title: '控笔',
|
|
subtitle: '控笔练习',
|
|
path: '/chinesePages/penControlSheet/penControlSheet',
|
|
},
|
|
{
|
|
id: 'word-test-sheet',
|
|
title: '测字表',
|
|
subtitle: '测字表',
|
|
path: '/chinesePages/wordTestSheet/wordTestSheet',
|
|
},
|
|
];
|