![thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fb3Qvpx%2FbtrZ8NAK7BF%2FZQxFXraKIzu9b80llplks0%2Fimg.png)
[React] React Link & Routes Usage
2023. 2. 21. 14:18
Front/React
Why do I use always English? Because I wanna improve my English skill. Let's hit the road kkkk Link How can we use the Link? It is very same as in HTML. How can use this? somethings words As you can see in Developer Mode(F12), this is the same thing. Routers It makes a page when you wanna show it like this. How can we use this? This Code can go to your settings page. To be continued..
![thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FrjxTS%2FbtrZAtV0gmE%2FRHYByJgoHK5txwtM2EJG51%2Fimg.png)
[React] React generating error
2023. 2. 16. 16:49
Front/React
리액트 파일 생성 할 때 알 수 없는 이유의 에러.. 왼쪽은 원래 잘 돌아가는 파일로 만든것이고 오른쪽은 그냥 자체적으로 tsx 파일 만든것인데, tsx 파일이 왜 안되는지 모르겠지만, 이것 때문에 한참 고생했다. To be continued..
![thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FcUm9y9%2FbtrZsDMJohY%2F1NqM6SM6odx4DhzvRTvPp1%2Fimg.png)
[React] --isolatedModules ERROR
2023. 2. 16. 15:49
Front/React
--isolatedModules ERROR The cause is an empty page on your .tsx file. Resolving this error You have to fill with 'export {}' To be continued..
![thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FnNjnQ%2FbtrZCotB7AM%2FKNlyGzeKJX6MMdxdkbbiK0%2Fimg.png)
[React] React File Type List
2023. 2. 16. 15:29
Front/React
show me a list type of react files for example jsx, tsx and so on.. Method Here's a list of file types you might commonly encounter when working with React: .js: This is a regular JavaScript file that can be used with React. You can write your React components in this file using the regular JavaScript syntax. However, you won't be able to use JSX syntax in this file. .jsx: This is a JavaScript f..
[IT] What is the difference between Webserver and Web Application Server?
2023. 2. 16. 14:19
IT
What is the difference between Webserver and Web Application Server? (무슨 차이가 있을까 웹서버와 웹 애플리케이션 서버 사이에) Method A web server and a web application server are two distinct types of server software that are commonly used in web application development. ( 웹 서버와 웹 애플리케이션 서버는 웹 애플리케이션 개발에 일반적으로 사용되는 두 가지 유형의 서버 소프트웨어입니다.) A web server is a software application that is responsible for serving static web..
![thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbLKmSp%2FbtrZqVrNonD%2FkFGHVjqJQExq6xEWCCH1Pk%2Fimg.png)
[DB] Upper Usage
2023. 2. 15. 14:51
DB
How can we use the Upper method? That's easy! Method AND UPPER(TRIM(MANAGE_CODE)) LIKE ('%'||#{SERCHKEYWORD}||'%') 다음과 같이 두면 f -> F 가 작동되질 않는다. Resolve AND UPPER(TRIM(MANAGE_CODE)) LIKE UPPER('%'||#{SERCHKEYWORD}||'%') // 변수 명에도 괄호로 닫고 UPPER로 감싸주면 작동이 가능하다. To be continued..