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 => ({ |
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, 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, { Component, Fragment } from "react"; | |
import { Row } from "reactstrap"; | |
import axios from "axios"; | |
import List from "./List"; | |
import Pagination from "../../../../helpers/Pagination"; | |
import Header from "./Header"; | |
import VariableModal from "./VariableModal"; | |
import { modalModes } from "../../../../constants/defaultValues"; |
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 { Col, Row } from 'antd'; | |
import React from 'react'; | |
import styled from 'react-emotion'; | |
import { connect } from 'react-redux'; | |
import closeIcon from 'src/public/img/icons/player/close.svg'; | |
import { AppState } from 'src/config/appState'; | |
import * as audioMiddleware from 'src/middlewares/audio'; |
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 TodoForm from '../components/TodoFrom'; | |
import TodoList from '../components/TodoList'; | |
import { ITodo } from '../interfaces'; | |
declare var confirm: (question: string) => boolean; | |
const TodosPage: React.FunctionComponent = () => { | |
const [todos, setTodos] = useState<ITodo[]>([]); |
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 _ from 'lodash'; | |
import cx from 'classnames'; | |
import Fetch from 'components/Fetch/Fetch'; | |
import Dropdown, { DropdownContent } from 'components/Dropdown/Dropdown'; | |
import { useFormControl, withFormControl } from 'components/Form/Form'; | |
import { SelectContext } from './SelectContext'; | |
import SelectKeyboardHandler from './SelectKeyboardHandler'; | |
import SelectScrollToSelected from './SelectScrollToSelected'; | |
import styles from './Select.css'; |
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
/* eslint-disable import/prefer-default-export */ | |
import Axios from 'axios'; | |
import { | |
ADD_USER, | |
GET_USERS, | |
GET_USERS_LOADING, | |
GET_USERS_ERROR, | |
DELETE_USER, | |
CHANGE_MODAL, | |
EDIT_FORM, |
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
#pelcro-app { | |
font-size: 15px; | |
#hockey-news { | |
font-family: "Saira", sans-serif; | |
.pelcro-prefix-site-logo { | |
height: 35px; | |
} |
OlderNewer