Upload files to ''

This commit is contained in:
John K Gomez 2020-04-28 14:17:50 +00:00
parent 9c9bd05e95
commit a82137dc21
3 changed files with 11 additions and 0 deletions

4
component-styling.css Normal file
View File

@ -0,0 +1,4 @@
.grid-item {
border: 2px black solid
}

BIN
line.jsx Normal file

Binary file not shown.

7
notFound.jsx Normal file
View File

@ -0,0 +1,7 @@
import React, { Component } from 'react';
const NotFound = () => {
return ( <h1>404</h1> );
}
export default NotFound;