Quiz: The Front-end App
Test your understanding of building front-end apps with React TypeScript.
We'll cover the following...
We'll cover the following...
React TypeScript
1.
What is the correct method to create and export an interface in React TypeScript?
A.
export default <InterfaceName> {}
B.
<InterfaceName> export default {}
C.
const <InterfaceName> = (export default) =>{}
D.
export interface <InterfaceName> {}
1 / 19
...