possible fix for bash

This commit is contained in:
chark1es 2024-03-20 03:44:44 -07:00
parent 09633d37cf
commit 2154c9f424
99 changed files with 3 additions and 3 deletions

View file

Before

Width:  |  Height:  |  Size: 550 B

After

Width:  |  Height:  |  Size: 550 B

View file

Before

Width:  |  Height:  |  Size: 462 KiB

After

Width:  |  Height:  |  Size: 462 KiB

View file

Before

Width:  |  Height:  |  Size: 329 KiB

After

Width:  |  Height:  |  Size: 329 KiB

View file

@ -2,9 +2,9 @@
import React from "react"; import React from "react";
import ReactDom from "react-dom"; import ReactDom from "react-dom";
class Bash extends React.Component { class Main extends React.Component {
render() { render() {
const bashSlidesPath = "/bash/index.html"; const bashSlidesPath = "/bash_slides/index.html";
return ( return (
<iframe <iframe
src={bashSlidesPath} src={bashSlidesPath}
@ -14,4 +14,4 @@ class Bash extends React.Component {
} }
} }
export default Bash; export default Main;