Skip to content

Commit

Permalink
simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
adnanwahab committed Oct 15, 2024
1 parent d8b8f8e commit 33bd2b1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
href="/sitemap.xml"
/>
<meta name="language" content="English" />
<link href="/static/css/output.css" rel="stylesheet" />
<link href="/public/css/output.css" rel="stylesheet" />
<!-- <script src="/static/js/htmx.js"></script>
<script src="https://cdn.jsdelivr.net/npm/d3@7"></script>
Expand Down
16 changes: 8 additions & 8 deletions js/main.jsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from '../views/odyssey/robotics-odyssey.tsx';
import { StrictMode } from 'react';
import '../static/css/output.css';
import React from "react";
import ReactDOM from "react-dom/client";
import App from "../views/odyssey/robotics-odyssey.tsx";
import { StrictMode } from "react";
import "../public/css/output.css";

console.log('main.js');
console.log("main.js");

const root = ReactDOM.createRoot(document.getElementById('app'));
const root = ReactDOM.createRoot(document.getElementById("app"));
root.render(
<StrictMode>
<App />
</StrictMode>
</StrictMode>,
);

0 comments on commit 33bd2b1

Please sign in to comment.