Skip to content

Instantly share code, notes, and snippets.

@Vladislav-Melenchuk
Created June 11, 2025 12:06
Show Gist options
  • Save Vladislav-Melenchuk/5e188141adecd6517ae3baaf03712261 to your computer and use it in GitHub Desktop.
Save Vladislav-Melenchuk/5e188141adecd6517ae3baaf03712261 to your computer and use it in GitHub Desktop.
HW_1_REACT

App.jsx

import logo from './assets/logo.jpg';
import './App.css'
import ContactInfo from "./ContactInfo.jsx";
import Title from "./Title.jsx";

function App() {
  return (
    <>
      <h1>React - это просто сказка!</h1>
      <div>
        <a href="" target="_blank">
          <img src={logo} className="logo react" alt="React logo" />
        </a>
      </div>

      <Title />
      <ContactInfo />
    </>
  )
}

export default App

ContactInfo

function ContactInfo() {
    return (
        <>
            <p>+38 096 03 000 54</p>
            <p className="read-the-docs">v.melenchuk03@gmail.com</p>
        </>
    );
}

export default ContactInfo;

Title.jsx

function Title() {
    return <h2>Меленчук Владислав Олегович</h2>;
}

export default Title;

Результат:

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment