#Module Parse failed: Identifier "Skill" has already been declared
10 messages · Page 1 of 1 (latest)
You import something with the Symbol Skill and you define a function with the same symbol named Skill I would say thats the problem here.
But this does not matter for the Code Compiler, it just sees two identically named Identifiers, You could try to rename the imported Identifier import {Skill as SkillType} from "../typings" and use that in your Props Definition accordingly.
!resolved