An open API service indexing awesome lists of open source software.

https://github.com/sudo-self/jessejesse

A react app base template
https://github.com/sudo-self/jessejesse

Last synced: 9 months ago
JSON representation

A react app base template

Awesome Lists containing this project

README

          

# JesseJesse.com
![Oct-06-2023 00-40-18](https://github.com/sudo-self/JesseJesse/assets/119916323/2af3c8e3-df33-45e2-aa0c-f320ee551671)


body{
background-image: url('https://sudo-self.github.io/assets/HTML&CSS.png');
background-repeat: no-repeat;
background-size: 100%;
background-attachment: fixed;
}

```s
$ git clone https://github.com/sudo-self/jessejesse.git
$ cd JesseJesse

```
## App.js
```s
import logo from './logo.svg';
import './App.css';

function App() {
return (



logo


JesseJesse.com







);
}

export default App;
...

```
## Git pull and push changes
```s
git remote -v
git remote add upstream https://github.com/sudo-self/jessejesse.git
git fetch upstream
git checkout master
git merge upstream/master
git push

```