Skip to content

Commit

Permalink
Fix from @booth-algo to fix compilation/linking
Browse files Browse the repository at this point in the history
errors
  • Loading branch information
SanjitRaman committed May 28, 2024
1 parent 5b06239 commit d5c5c4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion balancebot/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { createRoot } from 'react-dom/client';
import './index.css';
import ControlPage from './pages/ControlPage';
import { DashBoard } from './pages/Dashboard';
import DashBoard from './pages/Dashboard';
import reportWebVitals from './reportWebVitals';

const container = document.getElementById('root');
Expand Down
4 changes: 3 additions & 1 deletion balancebot/src/pages/Dashboard.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import "./Dashboard.css";

export const DashBoard = () => {
const DashBoard = () => {
return (
<div className="dash-board">
<div className="div">
Expand Down Expand Up @@ -82,3 +82,5 @@ export const DashBoard = () => {
</div>
);
};

export default DashBoard;

0 comments on commit d5c5c4e

Please sign in to comment.