WORK DONE

 

PAYMENT GATEWAY

 

INTERACTIVE QUIZ

VIDEO CONFERENCE

TECH STACK !

REACT

CLOUDINARY

NODE

EXPRESS

MONGOOSE

MLAB

THANK YOU

// scss

.app-title {
color: blue;
width: 100px;
height: 100px;
}
// React (js file)

render (){
	return (
    	<div className='app-title'> 
        	App title
        </div>
    );
}
import {styled} from 'styled-components';

const Title = styled.div`
color: blue;
width: 100px;
height: 100px;
`;


render () {
	return (
    	<Title> App title</Title>
    ); 
}

Older Approach

Styled components approach

contained styling

Copy of ITeach

By nik72619c

Copy of ITeach

  • 447