Skip to content
View HCanArslan's full-sized avatar

Highlights

  • Pro

Block or report HCanArslan

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
HCanArslan/README.md
import React from 'react';

class About extends Me {
  getCurrentWorkplace() {
    return {
      workplace: {
        company: 'Hogarth',
        position: 'Frontend Developer'
      }
    };
  }

  getDailyKnowledge() {
    return [
      'React',
      'Nextjs',
      'Redux',
      'Tailwind',
      'Javascript',
      'Nodejs'
    ];
  }

  getFutureGoal() {
    return '?';
  }

  render() {
    return (
      <div>
        <h1>About Me</h1>
        <p>Current Workplace: {this.getCurrentWorkplace().workplace.company} - {this.getCurrentWorkplace().workplace.position}</p>
        <p>Daily Knowledge: {this.getDailyKnowledge().join(', ')}</p>
        <p>Future Goal: {this.getFutureGoal()}</p>
      </div>
    );
  }
}

export default About;

Pinned Loading

  1. HCanArslan HCanArslan Public