From 1349c7c430dafb7bb4471e0b3f9f36fc5c58c7f8 Mon Sep 17 00:00:00 2001 From: Seth Trowbridge Date: Thu, 10 Oct 2024 20:00:22 -0400 Subject: [PATCH] format :) --- src/App.tsx | 8 +++++--- src/main.tsx | 11 ++++++++--- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 31a1d62..ea39a76 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,7 +2,9 @@ import React from 'react' export default function App() { const [count, setCount] = React.useState(0) - return ; + return ( + + ) } diff --git a/src/main.tsx b/src/main.tsx index 1afc83d..42746ef 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -1,6 +1,11 @@ import React from 'react' import ReactDOM from 'react-dom/client' -import App from './App'; +import App from './App' -const root = document.getElementById('root'); -root && ReactDOM.createRoot(root).render(); \ No newline at end of file +const root = document.getElementById('root') +root && + ReactDOM.createRoot(root).render( + + + , + )