This file contains hidden or 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 | |
| # Updating Ubunut | |
| echo "updating ubunutu... please be patient" | |
| apt-get update && apt-get upgrade -y | |
| echo "installing required packages... please be patient" | |
| apt-get install htop lib32gcc1 -y | |
| # Create steam user if needed |
This file contains hidden or 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 from 'react'; | |
| import PropTypes from 'prop-types'; | |
| import { withStyles } from '@material-ui/core/styles'; | |
| import Input from '@material-ui/core/Input'; | |
| import InputLabel from '@material-ui/core/InputLabel'; | |
| import FormControl from '@material-ui/core/FormControl'; | |
| import Paper from '@material-ui/core/Paper'; | |
| import MenuItem from '@material-ui/core/MenuItem'; | |
| let autocompleteService = null; |
This file contains hidden or 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 { Text } from 'react-native'; | |
| export default () => <Text>OK</Text>; |
This file contains hidden or 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 { useState } from 'react'; | |
| function DialogContext({ initialState = false, children }) { | |
| const [isOpen, setIsOpen] = useState(initialState); | |
| return children( | |
| isOpen, | |
| () => setIsOpen(true), | |
| () => setIsOpen(false) | |
| ) |
OlderNewer