Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/sryung1225/xwitter into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
sryung1225 committed Dec 21, 2023
2 parents cd05029 + 02fc0dd commit bb57c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { useEffect, useState, lazy, Suspense } from 'react';
import { RouterProvider, createBrowserRouter } from 'react-router-dom';
import { auth } from './firebase.ts';
import LoadingSpinner from './components/loading-spinner.tsx';
import * as S from './styles/global.ts';

const ProtectedRoute = lazy(() => import('./components/protected-route.tsx'));
Expand All @@ -9,7 +10,6 @@ const Profile = lazy(() => import('./routes/profile.tsx'));
const SearchResult = lazy(() => import('./routes/search-result.tsx'));
const Auth = lazy(() => import('./routes/auth.tsx'));
const Layout = lazy(() => import('./components/layout.tsx'));
const LoadingSpinner = lazy(() => import('./components/loading-spinner.tsx'));

const router = createBrowserRouter([
{
Expand Down

0 comments on commit bb57c2f

Please sign in to comment.