This file contains 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
<?php | |
namespace tests\Integration\API\AdminPanel; | |
use App\AdminPanel\Events\EventsHandler; | |
use DB; | |
use tests\Integration\AutoPricer\IntegrationTestCase; | |
class EventsHandlerTest extends IntegrationTestCase | |
{ |
This file contains 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, useContext } from 'react'; | |
import Button from '@material-ui/core/Button'; | |
import TextField from '@material-ui/core/TextField'; | |
import Typography from '@material-ui/core/Typography'; | |
import Grid from '@material-ui/core/Grid'; | |
import { makeStyles } from '@material-ui/core/styles'; | |
import ErrorOutlineIcon from '@material-ui/icons/ErrorOutline'; | |
import AuthContext from '../context/AuthContext'; | |
const useStyles = makeStyles((theme) => ({ |