This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Ensure gh CLI is installed | |
if ! command -v gh &>/dev/null; then | |
echo "Error: GitHub CLI (gh) is not installed." | |
exit 1 | |
fi | |
# Load GitHub configuration from .github.env | |
GITHUB_ENV_FILE=".github.env" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Parent.jsx | |
class Parent extends React.Component { | |
constructor() { | |
super(); | |
console.log("Parent constructor"); // 1 | |
} | |
componentDidMount() { | |
console.log("Parent CDM"); // 2 | |
} | |
render() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { Row, Button } from 'reactstrap'; | |
//files | |
import './help.css'; | |
import Close from '../../img/icons/close_orange.svg'; | |
import Arrow from '../../img/icons/hilfe_arrow.svg'; | |
class help extends Component { | |
constructor(props) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (window.innerWidth < 1025) { | |
this.setState({ | |
isBelow1025: true, | |
}) | |
} else { | |
this.setState({ | |
isBelow1025: false, | |
}) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { Link } from 'react-router-dom'; | |
import '../App.css'; | |
//media | |
import Close from './../img/icons/close_orange.svg'; | |
export default class Oems extends Component { | |
componentDidMount() { |