TS4025error TS4025: Exported variable ‘App’ has or is using private name ‘FC’.Broken Code ❌12345import React from 'react';const App: FC = (): JSX.Element => { return <></>;};Fixed Code ✔️12345import React, {FC} from 'react';const App: FC = (): JSX.Element => { return <></>;};