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 { useQuery, useMutation } from '@apollo/react-hooks'; | |
import { connect } from 'react-redux'; | |
import { makeStyles } from '@material-ui/core/styles'; | |
import Paper from '@material-ui/core/Paper'; | |
import Grid from '@material-ui/core/Grid'; | |
import Message from './Message'; | |
import LinearProgress from '@material-ui/core/LinearProgress'; | |
import { grey } from '@material-ui/core/colors'; | |
import SendMsgForm from './SendMsgForm'; |
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, useRef } from 'react'; | |
import axios from 'axios'; | |
import { useQuery } from '@apollo/react-hooks'; | |
import { Auth } from 'aws-amplify'; | |
import { makeStyles } from '@material-ui/core/styles'; | |
import Paper from '@material-ui/core/Paper'; | |
import Grid from '@material-ui/core/Grid'; | |
import TextField from '@material-ui/core/TextField'; | |
import Icon from '@material-ui/core/Icon'; | |
import Button from '@material-ui/core/Button'; |
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 } from 'react'; | |
import Grid from '@material-ui/core/Grid'; | |
import Chip from '@material-ui/core/Chip'; | |
import Icon from '@material-ui/core/Icon'; | |
import Button from '@material-ui/core/Button'; | |
import { grey } from '@material-ui/core/colors'; | |
import { makeStyles } from '@material-ui/core/styles'; | |
import MsgModal from './MsgModal'; | |
import Tooltip from '@material-ui/core/Tooltip'; | |
const useStyles = makeStyles(theme => ({ |
NewerOlder