Over 300 Practice Technical Questions

Revis3 is open source and community driven technical practice questions.

Example Question

General React

The code below is an example of a React component. What type of react component is this?

import React from 'react';

const MyComponent = () => {
    return (
        <div>
            <h1>Hello World!</h1>
        </div>
    );
};

See The Result

13 Total Questions
Topic Total Correct
General React 3 2
Hooks 7 4
Ecosystem 3 1