Files
UT-Registration-Plus/src/pages/options/App.tsx
doprz 29247d5dfa chore: lint-format-docs-tests-bugfixes (#105)
* 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
2024-02-22 22:42:58 -06:00

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>
);
}