move Section component to common

This commit is contained in:
Dawid Wysokiński 2021-03-28 09:18:16 +02:00
parent b0af6339f4
commit a5bce6dff3
6 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
import React from 'react';
import { Container, Typography } from '@material-ui/core';
import Section, { Size } from '../Section/Section';
import Section, { Size } from 'common/Section/Section';
const AboutExam = () => {
return (

View File

@ -3,7 +3,7 @@ import { GOOGLE_PLAY_URL } from 'config/app';
import { Container, Typography } from '@material-ui/core';
import Link from 'common/Link/Link';
import Section, { BgColor } from '../Section/Section';
import Section, { BgColor } from 'common/Section/Section';
const CheckMobileApp = () => {
return (

View File

@ -1,7 +1,7 @@
import Image from 'next/image';
import { makeStyles } from '@material-ui/core/styles';
import { Typography, Container, Grid } from '@material-ui/core';
import Section, { Size } from '../Section/Section';
import Section, { Size } from 'common/Section/Section';
const ExamParts = () => {
const classes = useStyles();

View File

@ -1,7 +1,7 @@
import { Profession as ProfessionT } from 'libs/graphql';
import { Container, Typography } from '@material-ui/core';
import Section, { Size } from '../Section/Section';
import Section, { Size } from 'common/Section/Section';
import Profession from './Profession';
export interface ProfessionsProps {

View File

@ -3,7 +3,7 @@ import { useCountdown } from 'libs/hooks';
import { makeStyles } from '@material-ui/core/styles';
import { Container, Grid, Typography } from '@material-ui/core';
import Section, { BgColor, Size } from '../Section/Section';
import Section, { BgColor, Size } from 'common/Section/Section';
export interface TimerProps {
dateOfTheExam: Date | string;