typescript를 거의 처음 다뤄보는 도중에지금 만들고있는 Box()라는 component에서사용할 image src url을 파라미터형으로넘겨주고 싶어졌다 그래서 옛날에 react에서 다뤄보던 방식대로funtion Box(url: string, oneLine: string, name: string, introduction:string) { return ();};const url1 = './img/1.jpg';const box1 = Box(url, oneLine, name, introduction);이런식으로 불러와서 호출해줬더니Warning: React.jsx: type is invalid -- expected a string (for built-in components) or a class/fun..