Initial client setup

This commit is contained in:
ireic
2019-12-03 20:39:54 +01:00
parent 84f0897c45
commit 6be3ac2e77
17 changed files with 17913 additions and 180 deletions

BIN
client/src/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

11
client/src/index.html Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Jira Clone</title>
</head>
<body>
<div id="root"></div>
</body>
</html>

5
client/src/index.jsx Normal file
View File

@@ -0,0 +1,5 @@
import React from 'react';
import ReactDOM from 'react-dom';
ReactDOM.render(<h1>YOOOOOOOOOO</h1>, document.getElementById('root'));