old-ybbond

My old site that was written with ReactJS
Log | Files | Refs | README | LICENSE | CC-LICENSE

AboutPage.js (632B)


      1 // @flow
      2 import React from 'react';
      3 
      4 import {Text} from '../Components';
      5 
      6 const CVPage = () => {
      7   return (
      8     <Text>
      9       Currently work as Frontend Engineer of kumparan.com in Jakarta, Indonesia.
     10       Building it with React, React Native for Android and iOS.
     11       <br />
     12       <br />
     13       Eager to learn.
     14       <br />
     15       Hardships.
     16       <br />
     17       I cannot say that I am humble, but I learn from experience that each
     18       individuals, their own excellences.
     19       <br />I try to learn from everyone, and everything.
     20       <br />
     21       <br />૮ ・ﻌ・ა
     22     </Text>
     23   );
     24 };
     25 
     26 export default React.memo<{}>(CVPage);