From 5d96017c0ce1d458f7620987114786252813ef67 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 10 May 2024 03:34:20 +0530 Subject: [PATCH] feat(wip): core selection webpreview --- ui/src/App.jsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/ui/src/App.jsx b/ui/src/App.jsx index ee10a96a..8ebfe86b 100644 --- a/ui/src/App.jsx +++ b/ui/src/App.jsx @@ -5,11 +5,12 @@ import WebPreview from "./components/WebPreview"; import { ConfigProvider } from 'antd'; import { BrowserRouter } from 'react-router-dom' -const App = () => ( +export default function App() { const [html, setHtml] = useState(null); const [elements, setElements] = useState([]) - ( {/* */} - + -); + ) -export default App; \ No newline at end of file +} \ No newline at end of file