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 Sequelize = require("sequelize"); | |
const database = require("../config/database"); | |
const developer = database.define("developer", { | |
devname: { | |
type: Sequelize.STRING, | |
required: true | |
}, | |
email: { | |
type: Sequelize.STRING, |
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 TextField from "@material-ui/core/TextField"; | |
import useStyles from "./Styles"; | |
import peaboxlogoMini from "../../images/miniLogo.png"; | |
import Logo from "../Logo"; | |
import { Button, Grid } from "@material-ui/core"; | |
import SearchIcon from "@material-ui/icons/Search"; | |
import InputAdornment from "@material-ui/core/InputAdornment"; | |
const FilterSearchBar = ({ handleOpenModal }) => { |
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 { makeStyles } from "@material-ui/core/styles"; | |
import backgroundHeader from "../../images/hivan-arvizu-soyhivan-MAnhvw0nDDY-unsplash.jpg"; | |
const useStyles = makeStyles(theme => ({ | |
nav: { | |
display: "flex", | |
justifyContent: "space-between", | |
alignItems: "center" | |
}, | |
main: { |
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; | |
} |
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
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
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 { 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, { 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"; |
NewerOlder