Code style

Skills

HTML

CSS/SCSS

JS

React Redux

Code example


import React from 'react';
import styles from './NotFound.module.css';
                  
class NotFound extends React.Component {
   render = () => {
      return (
         <div className="container">
         <div className={styles.not_found}>Page not found</div>
         </div>
      );
   };
};

export default NotFound;
               

Recent project

Development of a social network based on the course "React JS - the way of the samurai 1.0"

Not completed to the end

emmy project View the code