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, { useState } from 'react' | |
import Sidebar from './Sidebar' | |
import Edit from './Edit' | |
import { render, waitForElement, fireEvent } from '@testing-library/react'; | |
describe('Component sidebar tests', () => { | |
const setup = () => { |
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
{ | |
"eslint.workingDirectories": [ | |
"live-plugins" | |
], | |
"javascript.validate.enable": false, | |
"eslint.options": { | |
"extensions": [ | |
".tsx", | |
".ts", | |
".js" |
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
{"lastUpload":"2020-02-18T11:45:14.965Z","extensionVersion":"v3.4.3"} |
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
{ | |
"prettier.eslintIntegration": true, | |
"prettier.printWidth": 120, | |
"javascript.validate.enable": false, | |
"java.home": "/usr/lib/jvm/java-8-openjdk-amd64", | |
"workbench.colorTheme": "Forest Focus", | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" |
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
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '';FLUSH PRIVILEGES; |
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
/** | |
* Metro configuration for React Native | |
* https://github.com/facebook/react-native | |
* | |
* @format | |
*/ | |
const path = require('path'); | |
const getWorkspaces = require('get-yarn-workspaces'); | |
const workspaces = getWorkspaces(__dirname); |
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
#!/usr/bin/env bash | |
# packager | |
adb reverse tcp:8081 tcp:8081 | |
adb -d reverse tcp:8081 tcp:8081 |
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 from 'react'; | |
import {createAppContainer, createStackNavigator} from 'react-navigation'; | |
import FunctionScreen, {navigationOptions} from './src/screen/Function' | |
import ClassScreen from './src/screen/Class' | |
const Root = createStackNavigator({ | |
ClassScreen: { | |
screen: ClassScreen | |
}, |
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 from "react"; | |
import { StyleSheet, Text, View } from 'react-native'; | |
export function navigationOptions({ navigation }) { | |
return { | |
header: null | |
}; | |
} | |
const FunctionScreen = () => { |
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 from "react"; | |
import { StyleSheet, Text, View } from "react-native"; | |
export default class ClassScreen extends React.Component { | |
static navigationOptions = { | |
Title: "Class component" | |
}; | |
render() { | |
return ( | |
<View style={styles.container}> |