diff --git a/src/app/content/views/Main/index.tsx b/src/app/content/views/Main/index.tsx
index 8e11253..6294275 100644
--- a/src/app/content/views/Main/index.tsx
+++ b/src/app/content/views/Main/index.tsx
@@ -1,8 +1,8 @@
import { useEffect, type FC, useRef } from 'react'
import { useRemeshDomain, useRemeshQuery } from 'remesh-react'
-import MessageList from '@/components/MessageList'
-import MessageItem from '@/components/MessageItem'
+import MessageList from '../../components/MessageList'
+import MessageItem from '../../components/MessageItem'
import MessageListDomain from '@/domain/MessageList'
const Main: FC = () => {
diff --git a/src/app/options/App.css b/src/app/options/App.css
deleted file mode 100644
index f8aa57a..0000000
--- a/src/app/options/App.css
+++ /dev/null
@@ -1,42 +0,0 @@
-#root {
- max-width: 1280px;
- margin: 0 auto;
- padding: 2rem;
- text-align: center;
-}
-
-.logo {
- height: 6em;
- padding: 1.5em;
- will-change: filter;
- transition: filter 300ms;
-}
-.logo:hover {
- filter: drop-shadow(0 0 2em #54bc4ae0);
-}
-.logo.react:hover {
- filter: drop-shadow(0 0 2em #61dafbaa);
-}
-
-@keyframes logo-spin {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
-}
-
-@media (prefers-reduced-motion: no-preference) {
- a:nth-of-type(2) .logo {
- animation: logo-spin infinite 20s linear;
- }
-}
-
-.card {
- padding: 2em;
-}
-
-.read-the-docs {
- color: #888;
-}
diff --git a/src/app/options/App.tsx b/src/app/options/App.tsx
index a29ee5b..defd1f2 100644
--- a/src/app/options/App.tsx
+++ b/src/app/options/App.tsx
@@ -1,44 +1,7 @@
-import { useRef, useState } from 'react'
-import { useClickAway } from 'react-use'
-import wxtLogo from '/wxt.svg'
-import reactLogo from '@/assets/react.svg'
-import './App.css'
+import Layout from './components/Layout'
function App() {
- const [count, setCount] = useState(0)
- const menuRef = useRef
(null)
- useClickAway(
- menuRef,
- (...params) => {
- console.log(params)
-
- // setOpen(false)
- },
- ['click']
- )
-
- return (
- <>
-
-
-
-
-
-
-
- Edit src/App.tsx
and save to test HMR
-
-
- Click on the WXT and React logos to learn more
- >
- )
+ return 11
}
export default App
diff --git a/src/app/options/components/Layout.tsx b/src/app/options/components/Layout.tsx
new file mode 100644
index 0000000..94128ad
--- /dev/null
+++ b/src/app/options/components/Layout.tsx
@@ -0,0 +1,19 @@
+import { type ReactNode, type FC } from 'react'
+
+export interface AppLayoutProps {
+ children?: ReactNode
+}
+
+const Layout: FC = ({ children }) => {
+ return (
+
+
+ {children}
+
+
+ )
+}
+
+Layout.displayName = 'Layout'
+
+export default Layout
diff --git a/src/app/options/index.html b/src/app/options/index.html
index 7e4b0ca..c744f39 100644
--- a/src/app/options/index.html
+++ b/src/app/options/index.html
@@ -3,11 +3,11 @@
- User Config
+ WEB CHAT
-
+