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 { StyleSheet, View, Text, FlatList } from "react-native"; | |
import { WebView } from "react-native-webview"; | |
import { db, auth } from "../api/FirebaseApi"; | |
export default function Videos() { | |
const [contents, setContent] = useState(""); | |
const [user, currentuser] = useState(""); | |
useEffect(() => { |
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 { | |
StyleSheet, | |
View, | |
Text, | |
TextInput, | |
TouchableOpacity, | |
FlatList, | |
} from "react-native"; | |
import DrawerButton from "../drawer/drawerButton"; |
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 { InputGroup, FormControl, Form, Button, Modal } from "react-bootstrap"; | |
import Wallet from "./modal/Wallet"; | |
import "./modal/Modal.css"; | |
class Swap extends React.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, { useState, useEffect } from "react"; | |
import { StyleSheet, View, Text, RefreshControl } from "react-native"; | |
import Timeline from "react-native-timeline-flatlist"; | |
import { db, auth } from "../api/FirebaseApi"; | |
export default function Transactions() { | |
const [contents, setContent] = useState(""); | |
const [user, currentuser] = useState(""); | |
const [refresh, setRefresh] = useState(false); | |
const [seed, setSeed] = useState(1); |
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
document.getElementById("count").onclick = function () { | |
incrementor(); | |
}; | |
function incrementor() { | |
let counterValue = 0; | |
let counter = document.getElementById("num"); | |
counterValue += 1; | |
console.log("increment", counterValue); | |
counter.textContent = counterValue; |
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, { | |
createContext, | |
useContext, | |
useReducer, | |
useMemo, | |
useCallback, | |
useEffect, | |
} from "react"; | |
import { useWeb3React } from "@web3-react/core"; |
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
[] | |
[] | |
[] | |
[] | |
[] | |
[] | |
[] | |
[] | |
[] | |
[] |
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 { motion } from 'framer-motion' | |
import React, { useState, useEffect } from 'react' | |
import styled from 'styled-components' | |
export default function Cards(props) { | |
const [bar, setBar] = useState(false) | |
const { custom, src } = props | |
const Box = styled(motion.div)` | |
margin-top: 40px; |
OlderNewer