This commit is contained in:
2022-03-04 18:12:56 +09:00
parent 5379709771
commit 6c5815afc7
4 changed files with 20 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
REACT_APP_SERVER_URL=
REACT_APP_SERVER_URL=http://121.143.34.232:10000
REACT_APP_SERVER_RESERVE_URL=
REACT_APP_IMAGE_SERVER_URL=
REACT_APP_KAKAO_REST_API_KEY=

View File

@@ -1,7 +1,6 @@
import { mainAxios } from 'libs/axios';
import { useEffect, useState } from 'react';
import logo from './logo.svg';
import './App.css';
const App: React.FC = () => {
@@ -13,21 +12,11 @@ const App: React.FC = () => {
},[])
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<div>
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.tsx</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}