hey,
I’m stuck on stape 6.
I have the same code of video but there is nothing print un the console.
My code
import { animals } from './animals';
import React form 'react';
import { createRoot } from 'react-dom/client';
const container = document.getElementById('app');
const root = createRoot(container);
const title = '';
const animalFacts = <h1>{title === ''? 'Click an animal for a fun fact!' : title}</h1>>;
root.render(animalFacts);
The localhots:8000 stay empty in my space.
I have read again and again my code, and i just burn my eyes
What i do wrong ?
Tx