Skip to content

Commit d6afcec

Browse files
authored
Beta conflicts (#27)
* conflict * conflicts * resolved issue with imports * terminal header
1 parent da5e79c commit d6afcec

File tree

20 files changed

+11
-11
lines changed

20 files changed

+11
-11
lines changed

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { lazy, onMount, Suspense } from 'solid-js'
33
import { useAppContextMain } from './store/context/main'
44

55
const ToastNotificationWindow = lazy(() => import('@components/Notifications'))
6-
const Modals = lazy(() => import('@containers/Modals/Index'))
6+
const Modals = lazy(() => import('@containers/Modals'))
77
const AppRoutes = lazy(() => import('@routes/Routes'))
88

99
const App = () => {

src/components/Board/Board/index.tsx renamed to src/components/Board/DefaultBoard/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface IProps {
88
isActive?: boolean
99
}
1010

11-
export const Board: Component<IProps> = (props) => {
11+
export const DefaultBoard: Component<IProps> = (props) => {
1212
return (
1313
<button
1414
classList={{
@@ -34,4 +34,4 @@ export const Board: Component<IProps> = (props) => {
3434
)
3535
}
3636

37-
export default Board
37+
export default DefaultBoard
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/components/Dropdown/DropdownList/Index.tsx renamed to src/components/Dropdown/DropdownList/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Board } from '@components/Board/Board'
1+
import { DefaultBoard } from '@components/Board/DefaultBoard'
22
import Typography from '@components/Typography'
33
import { IDropdownList } from '@interfaces/interfaces'
44
import { classNames } from '@src/utils'
@@ -41,7 +41,7 @@ const DropdownList: Component<IProps> = (props) => {
4141
}>
4242
<For each={props.data}>
4343
{(data) => (
44-
<Board
44+
<DefaultBoard
4545
{...data}
4646
isActive={data.label === props.activeElement}
4747
onClick={() => {

src/components/Footer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Button } from '@components/Buttons/DefaultButton'
1+
import { Button } from '@components/Buttons/Button'
22
import { classNames } from '@src/utils'
33
import { Component, Show } from 'solid-js'
44

0 commit comments

Comments
 (0)