Tag filter
Mode
Latest updates:

Site is now considered live and online

While the main logs are being organized, you can browse the early entries here: /logs/prologue/

Logs have begun, 4 entries, up to March 10, 2025

Latest Log Entry

Class blunder, DDO equipment errors,
2025-04-09

# Class blunder, DDO equipment errors,

User
for my class tonight, I copy/pasted as instructor told us, but now having an error, and it's probably in this file: App.jsx

((js code))

Assistant
Thanks for sharing your `App.jsx` file! From the code, a **common issue** I notice right away is that `useState` and `newsData` are **used but not imported** or defined anywhere in the snippet you posted. That would absolutely throw an error.

Here’s what you can check or fix:

---

### ✅ 1. **Make Sure `useState` is Imported**
Add this at the top of the file if it's missing:

```jsx
import React, { useState } from 'react';
```

Read more…

Tags:

This excerpt is taken from the latest logs release.
For context on the site and how it’s structured, see theStart page.