refactor: imports

This commit is contained in:
Timothy Z. 2024-07-04 21:44:51 +03:00
parent c5efdcb74f
commit 13aeae0c30
7 changed files with 29 additions and 4 deletions

View file

@ -2,11 +2,11 @@
import React, { useState } from 'react';
import { MainNavBars, PaginationInput, useProfile, withCoreSuspender } from 'stremio/common';
import Table from './Table';
import List from './List';
import Placeholder from './Placeholder';
import useCalendar from './useCalendar';
import useSelectableInputs from './useSelectableInputs';
import Table from './Table/Table';
import List from './List/List';
import Placeholder from './Placeholder/Placeholder';
import styles from './Calendar.less';
type Props = {

View file

@ -0,0 +1,5 @@
// Copyright (C) 2017-2024 Smart code 203358507
import Item from './Item';
export default Item;

View file

@ -1,7 +1,7 @@
// Copyright (C) 2017-2024 Smart code 203358507
import React, { useMemo } from 'react';
import Item from './Item/Item';
import Item from './Item';
import styles from './List.less';
type Props = {

View file

@ -0,0 +1,5 @@
// Copyright (C) 2017-2024 Smart code 203358507
import List from './List';
export default List;

View file

@ -0,0 +1,5 @@
// Copyright (C) 2017-2024 Smart code 203358507
import Placeholder from './Placeholder';
export default Placeholder;

View file

@ -0,0 +1,5 @@
// Copyright (C) 2017-2024 Smart code 203358507
import Cell from './Cell';
export default Cell;

View file

@ -0,0 +1,5 @@
// Copyright (C) 2017-2024 Smart code 203358507
import Table from './Table';
export default Table;