Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(frontend): adjustments for bumped node version #283

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ This is just one the possible workflows that can be implemented with Argo Watche
**Figure 2:** This is a simplified diagram of the workflow described above.
</div>

> :warning: In addition to pipeline logs, the whole process can be observed through the web UI.
> [!TIP]
> In addition to pipeline logs, the whole process can be observed through the web UI.

## Documentation

Expand Down
13 changes: 4 additions & 9 deletions web/src/index.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
import React from 'react';
import ReactDOM from 'react-dom';
// CSS reset for multi-browser support
import { createRoot } from 'react-dom/client';
import CssBaseline from '@mui/material/CssBaseline';
// MUI library default font
import '@fontsource/roboto/300.css';
import '@fontsource/roboto/400.css';
import '@fontsource/roboto/500.css';
import '@fontsource/roboto/700.css';
// Custom CSS
import './index.css';
// Application
import App from './App';

// Start the application
ReactDOM.render(
const root = document.getElementById('root');
createRoot(root).render(
<React.StrictMode>
<CssBaseline />
<App />
</React.StrictMode>,
document.getElementById('root'),
</React.StrictMode>
);
Loading