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
| function sendMessage() { | |
| const button = document.querySelector("#startNonContactChat > div"); | |
| button.click(); | |
| const number = "67993109148"; | |
| const input = document.querySelector("div.alerty-content > div > input[type=text]"); | |
| input.value = input.value + number; | |
| document.querySelector("div.alerty-action > a.btn-ok").click(); | |
| const message = "Mensagem"; |
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
| { | |
| "name": "@clients/sgi", | |
| "version": "0.0.1", | |
| "main": "__generated__/AppEntry.js", | |
| "scripts": { | |
| "start": "expo start", | |
| "android": "expo start --android", | |
| "ios": "expo start --ios", | |
| "web": "expo start --web", | |
| "eject": "expo eject", |
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
| c50483d8fc1d2854ddf23832212878e2e80ee803 |
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, { useState, useEffect } from 'react'; | |
| import { View, ScrollView } from 'react-native'; | |
| import { FontAwesome, Ionicons, Feather } from '@expo/vector-icons'; | |
| import Icon from '@expo/vector-icons/build/Feather'; | |
| import COLORS from '../../constants/index'; | |
| import * as S from './styles'; | |
| const Profile: React.FC = () => { | |
| const [avatar, setAvatar] = useState(''); |
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 { AuthGuard } from './guard/auth-guard'; | |
| import { NgModule } from '@angular/core'; | |
| import { PreloadAllModules, RouterModule, Routes, CanActivate } from '@angular/router'; | |
| import { AppComponent } from './app.component'; | |
| import { LoginPage } from './pages/users/login/login.page'; | |
| import { IndexPage } from './pages/home/index/index.page'; | |
| const routes: Routes = [ | |