Skip to content
View adriel87's full-sized avatar
😄
😄
Block or Report

Block or report adriel87

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
adriel87/README.md

Hi I'm Adriel 👋

import React from 'react'
import ReactDOM from 'react-dom/client'

interface MyProps {
    name:string,
    languages:string[],
    hobbies:string[],

}


const AdrielDev = (props:MyProps) => {
  return (
    <>
    <h1>{props.name}Dev</h1>
    <p>I am currently familiar with the following languages or frameworks</p>
    <ul>
    {
      props.languages.map(lenguage=> <li>{lenguage}</li>)
    }
    </ul>

    <article>
      <p>I also like</p>
      {
        props.hobbies.map(hobbie=> <p>{hobbie}</p>)
      }
    </article>
    </>
  )
}

const languages:string[] = ['Javascript','Typescript','React','Java','node','nestJS']

const hobbies:string[] = ['climb','coffe','program']


ReactDOM.createRoot(document.getElementById('root')!).render(
  <React.StrictMode>
    <AdrielDev name='Adriel' languages={languages} hobbies={hobbies}/>
  </React.StrictMode>
)

Popular repositories

  1. greetings greetings Public

    wiiii

    CSS 1

  2. tarot-dev-mobile tarot-dev-mobile Public

    Your fate in yor hands, maybe

    C++ 1

  3. ProyectoPecera ProyectoPecera Public

  4. webpack-skeleton webpack-skeleton Public archive

    estructura de archivos preparada para montar app con webpack solo

    JavaScript

  5. listoftodos listoftodos Public

    CSS

  6. nodeBasicConnect nodeBasicConnect Public

    Una pequeña guía para poder conectar a una base de datos

    JavaScript