Sobes.tech
Junior — Senior

Development of a separate React component for displaying text

livecode

Task condition

It is required to create an independent React component that displays the string "Hello CodeSandbox". An example implementation is provided below.

import "./styles.css";

export default function HelloComponent() {
  return (
    <div className="AppContainer">
      <h1>Hello CodeSandbox</h1>
      <h2>Start editing to see some magic happen!</h2>
    </div>
  );
}