Skip to content

Commit

Permalink
refactor: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kKaskak committed Jul 4, 2024
1 parent c5efdcb commit 13aeae0
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/routes/Calendar/Calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
5 changes: 5 additions & 0 deletions src/routes/Calendar/List/Item/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Copyright (C) 2017-2024 Smart code 203358507

import Item from './Item';

export default Item;
2 changes: 1 addition & 1 deletion src/routes/Calendar/List/List.tsx
Original file line number Diff line number Diff line change
@@ -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 = {
Expand Down
5 changes: 5 additions & 0 deletions src/routes/Calendar/List/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Copyright (C) 2017-2024 Smart code 203358507

import List from './List';

export default List;
5 changes: 5 additions & 0 deletions src/routes/Calendar/Placeholder/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Copyright (C) 2017-2024 Smart code 203358507

import Placeholder from './Placeholder';

export default Placeholder;
5 changes: 5 additions & 0 deletions src/routes/Calendar/Table/Cell/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Copyright (C) 2017-2024 Smart code 203358507

import Cell from './Cell';

export default Cell;
5 changes: 5 additions & 0 deletions src/routes/Calendar/Table/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Copyright (C) 2017-2024 Smart code 203358507

import Table from './Table';

export default Table;

0 comments on commit 13aeae0

Please sign in to comment.