Skip to content

Commit

Permalink
chore: fix import file case
Browse files Browse the repository at this point in the history
  • Loading branch information
d-rita committed Dec 20, 2024
1 parent 262636f commit 6e328e8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { FC } from 'react'
import { RouterProvider } from 'react-router-dom'
import AppWrapper from './components/AppWrapper'
import { router } from './routes/Router'
import AppWrapper from './components/appWrapper'
import { router } from './routes/router'

const App: FC = () => {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/components/keys/Keys.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import KeysTable from './KeysTable'
import KeysTable from './keysTable'

export default function Keys() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/routes/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from 'react'
import { Outlet, useParams } from 'react-router-dom'
import classes from '../App.module.css'
import Toolbar from '../components/create/Toolbar'
import Sidebar from '../components/sidebar/Sidebar'
import Sidebar from '../components/sidebar/sidebar'

function Layout() {
const { store } = useParams()
Expand Down
2 changes: 1 addition & 1 deletion src/routes/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Edit from '../components/edit/Edit'
import EmptyArea from '../components/EmptyArea'
import Error from '../components/Error'
import Keys from '../components/keys/Keys'
import Layout from './Layout'
import Layout from './layout'

export const router = createHashRouter([
{
Expand Down

0 comments on commit 6e328e8

Please sign in to comment.