Solution

The class names way

Title.css

.Title {
  font-size: 24px;
  color: #333;
  text-align: center;
}

Title.js

import React from 'react';
import './Title.css';

function Title() {
  return (
    <h1 className="Title">
    😺 Emoji picker 🐶
    </h1>
  );
}

The inline styles way

Style.js

Title.js

Last updated