12 lines
229 B
TypeScript
Executable File
12 lines
229 B
TypeScript
Executable File
import LessonCategoriesMeta from './Lesson/meta.json';
|
|
|
|
function getLessonCategories(): any {
|
|
return LessonCategoriesMeta;
|
|
}
|
|
|
|
function Helloworld(): string {
|
|
return getLessonCategories();
|
|
}
|
|
|
|
export { Helloworld };
|