refactor: move person types in interface

This commit is contained in:
Sammy Teillet
2023-04-20 15:39:56 +02:00
parent 7ade04b79e
commit b8032e9605
5 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@ import Table from '../../components/table/Table';
import styled from '@emotion/styled';
import { peopleColumns } from './people-table';
import { gql, useQuery } from '@apollo/client';
import { GraphqlPerson, Person } from './types';
import { GraphqlPerson, Person } from '../../interfaces/person.interface';
import { defaultData } from './default-data';
import { mapPerson } from './mapper';