Skip to content

Commit

Permalink
Auto stash before rebase of "feat/#48" onto "main"
Browse files Browse the repository at this point in the history
  • Loading branch information
E-hyeon committed Aug 3, 2024
1 parent 5b68aea commit b9cf12c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 24 deletions.
10 changes: 0 additions & 10 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import React from 'react';
import { BrowserRouter as Router, Route, Routes } from 'react-router-dom';
import { RecoilRoot } from 'recoil';
<<<<<<< Updated upstream
import { ThemeProvider } from 'styled-components';
import { theme } from 'styles/colors';
import AddGroupInputCount from './pages/AddGroupMain/AddGroupInputCount';
Expand Down Expand Up @@ -32,7 +31,6 @@ function App() {
<MainScreen>
<ThemeProvider theme={theme}>
<Routes>
<<<<<<< Updated upstream
<Route path="/" element={<EnterMain />} />
<Route path="login" element={<EnterLogin />} />
<Route path="login/clause" element={<EnterClause />} />
Expand All @@ -55,14 +53,6 @@ function App() {
<Route path="vote/create" element={<VoteMainPage />} />
<Route path="vote/excute" element={<VoteMainPage />} />
<Route path="vote/detail" element={<VoteMainPage />} />
=======
<Route path="/head-count" element={<AddGroupInputCount />} />
<Route path="/Space" element={<AddGroupSpace />} />
<Route path="/member-name" element={<AddGroupMemberName />} />
<Route path="/group-type" element={<AddGroupType />} />
<Route path="/loading" element={<AddGroupLoading />} />
<Route path="/share" element={<AddGroupShare />} />
>>>>>>> Stashed changes
</Routes>
</ThemeProvider>
</MainScreen>
Expand Down
Empty file.
Original file line number Diff line number Diff line change
@@ -1,20 +1,8 @@
import { useState, React } from 'react';
import { useState } from 'react';
import * as S from './Styles';
import MembernameCreate from './membernameCreate';

const membernameList = () => {
return (
<S.nameLayout>
<S.nameList>
<S.nameContainer>
<S.nameBox>

</S.nameBox>
<S.nameButton type={'button'}></S.nameButton>
</S.nameContainer>
</S.nameList>
</S.nameLayout>
);
return <S.Layout />;
};

export default membernameList;

0 comments on commit b9cf12c

Please sign in to comment.