import HelpBox from './HelpBox'; import './HelpArea.css'; const HELP_ITEMS = [ { id: 'h1', title: 'What is Git?', text: 'Git is a version control system, helping you to manage your code and create code snapshots.', }, { id: 'h2', title: 'What is GitHub?', text: 'GitHub is a company and online offering, providing you with tons of Git-related services (e.g., cloud repositories).', }, { id: 'h3', title: 'What is GitHub Actions?', text: 'GitHub Actions is an automation service (or CI / CD service) that helps you automate repository-related workflows and processes.', }, ]; function HelpArea() { return (
{HELP_ITEMS.map((item) => ( ))}
); } export default HelpArea;