Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
created frontend app template
Browse files Browse the repository at this point in the history
  • Loading branch information
kaimsfd committed Sep 28, 2023
1 parent a5fa6f7 commit 3a60bdd
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
8 changes: 8 additions & 0 deletions frontend/src/components/App.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from 'react';
import './App.css';

export default function App(): JSX.Element {
return (

)
}
12 changes: 12 additions & 0 deletions frontend/src/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './components/App';


const root: ReactDOM.Root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);

0 comments on commit 3a60bdd

Please sign in to comment.