refactor: Replace Webpack with Vite (#53)

This commit is contained in:
Razboy20
2024-01-24 19:40:30 -06:00
committed by GitHub
parent 1629c85818
commit 0560a01a55
112 changed files with 7322 additions and 32180 deletions

13
src/pages/options/App.tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
import ExtensionRoot from '@views/components/common/ExtensionRoot/ExtensionRoot';
/**
*
*/
export default function App() {
return (
<ExtensionRoot>
<div>hello how are you doing today.</div>
</ExtensionRoot>
);
}