React: Animal Fun Facts exercise not rendering [halp]

import { animals } from './animals';
import React from 'react';
import ReactDOM from 'react-dom';

const title = ''

const background = (
  <img
  className={background}
  alt={ocean}
  src={/images/ocean.jpg}
 />)

const animalFacts = {
  <hi> {title} === '' ? 'Click an animal for a fun fact' : {title}</h1>
  <div>{background}</div>
}

ReactDOM
  .render(document.getElementById('root'))

This is not a valid source. If you use curly braces, you need to pass in a javascript expression. But you’re passing in a string.

thanks for taking a glance at it.