* docs: add jsdoc * feat: change enums to as const objects * chore(test): add themeColors.test.ts * fix: fix tests and bugs with strings.ts util * fix: path alias imports and tsconfig file bug * fix: remove --max-warnings 0
14 lines
278 B
TypeScript
14 lines
278 B
TypeScript
import ExtensionRoot from '@views/components/common/ExtensionRoot/ExtensionRoot';
|
|
import React from 'react';
|
|
|
|
/**
|
|
*
|
|
*/
|
|
export default function App() {
|
|
return (
|
|
<ExtensionRoot>
|
|
<div>hello how are you doing today.</div>
|
|
</ExtensionRoot>
|
|
);
|
|
}
|