Loading preview...

Explorer
  • 📁 src
    • 📄 App.tsx
    • 📄 index.tsx
    • 📄 index.css
    • 📁 components
      • 📄 MovieCard.tsx
      • 📄 SearchBar.tsx
  • 📁 public
    • 📄 index.html
  • 📄 package.json
  • 📄 README.md
import React from 'react';
import './index.css';

function App() {
  return (
    <div className="app">
      <h1>IMDb Movie Finder</h1>
      <p>Your cinematic movie discovery app</p>
    </div>
  );
}

export default App;
$ npm install
✓ Dependencies installed successfully
$ npm run dev
✓ Development server running on http://localhost:3000
$ _