Showing
1 changed file
with
0 additions
and
18 deletions
1 | -import React, {useEffect} from 'react' | ||
2 | -import axios from 'axios' | ||
3 | - | ||
4 | -function LandingPage() { | ||
5 | - // 랜딩페이지에 들어오자마자 | ||
6 | - useEffect(() => { | ||
7 | - axios.get('/api/hello') // get request를 서버로 보냄 (endpoint는 /api/hello) | ||
8 | - .then(response => console.log(response.data)) // 서버로부터 응답 받은 내용을 콘솔에 출력 | ||
9 | - }, []) | ||
10 | - | ||
11 | - return ( | ||
12 | - <div> | ||
13 | - LandingPage 랜딩페이지 | ||
14 | - </div> | ||
15 | - ) | ||
16 | -} | ||
17 | - | ||
18 | -export default LandingPage |
-
Please register or login to post a comment