🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.

Project 28: Cryptocurrency Ticker

React Engineer
Step 1 of 4
Project

Welcome to Cryptocurrency Ticker in React

Let's build a React component with state hooks.

🎯 Your Task

Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!

import React, { useState, useEffect } from 'react';

// Step 1: Basic Component Structure
export default function CryptocurrencyTickerApp() {
  const [data, setData] = useState([]);
  const [loading, setLoading] = useState(true);

  return (
    <div className="app-container">
      <h1>Cryptocurrency Ticker</h1>
      <p>Welcome to the application.</p>
    </div>
  );
}