1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

update components to match new architecture after merge from dev

This commit is contained in:
Sylvain 2021-05-17 17:09:11 +02:00
parent 1f9a7ba6cc
commit 04b3bfe3c5
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import apiClient from './api-client';
import apiClient from './clients/api-client';
import { AxiosResponse } from 'axios';
import { EventTheme } from '../models/event-theme';

View File

@ -1,4 +1,4 @@
import apiClient from './api-client';
import apiClient from './clients/api-client';
import { AxiosResponse } from 'axios';
import { Theme } from '../models/theme';

View File

@ -2,7 +2,7 @@ import React, { useEffect, useState } from 'react';
import { useTranslation } from 'react-i18next';
import Select from 'react-select';
import { react2angular } from 'react2angular';
import { Loader } from './loader';
import { Loader } from './base/loader';
import { Event } from '../models/event';
import { EventTheme } from '../models/event-theme';
import { IApplication } from '../models/application';