cubetiq-ts-utils/src/index.ts

6 lines
125 B
TypeScript
Raw Normal View History

2021-03-10 13:16:47 +07:00
const Index = (): void => {
2021-03-10 13:37:21 +07:00
console.log('Index', 'Hello, you are init the default function!');
};
2021-03-10 13:16:47 +07:00
2021-03-10 13:37:21 +07:00
export default Index;