...

/

Quiz: Setting up the Frontend and Creating the Server

Quiz: Setting up the Frontend and Creating the Server

Test your knowledge about setting up the frontend using React.

We'll cover the following...

Quiz

1.

(Fill in the blank.) With reference to React, below is an example of a(n) ______________ that displays a simple string Products.

import React from 'react';
function Products() { return (
<div> <h2>
            Products
        </h2>
</div> );
}
export default Products;
A.

framework

B.

code

C.

component

D.

HTML snippet


1 / 5
...