Types of parameters 'props' and 'props' are incompatible.
Why? React.FC is actually a generic type. You need to specify your prop type
Solution:
const Layout: React.FC<OwnProps> = (props: OwnProps) => {}