Inflearn Community Q&A
Property 'render' does not exist on type 'IntrinsicAttributes & (PathRouteProps | LayoutRouteProps | IndexRouteProps)'.
Resolved
Written on
·
708
0
<div>
<Routes>
<Route path="/" render={(props) => <GameMaster {...props}/>}/>
<Route path="/game/:name" render={(props) => <GameMaster {...props}/>}/>
</Routes>
</div>
해당 코드에서
Property 'render' does not exist on type 'IntrinsicAttributes & (PathRouteProps | LayoutRouteProps | IndexRouteProps)'.
라는 에러가 계속 뜨는데, 무슨 이유일까요? ㅠㅠ
typescriptreact




