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
const express = require("express"); | |
const server = express(); | |
server.use(express.json()); | |
let numberOfRequests = 0; | |
const projects = []; | |
function checkProjectExists(req, res, next) { |
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, {Component} from 'react'; | |
import {Image, View, Text, StyleSheet, TouchableOpacity} from "react-native"; | |
import interopRequireDefault from "@babel/runtime/helpers/esm/interopRequireDefault"; | |
export default class App extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { |
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, {Component} from 'react'; | |
import {Image, View, Text, StyleSheet,TouchableOpacity} from "react-native"; | |
export default class App extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
textoFrase: '', |
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
myAppToDoList |