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
- Host: GitHub
- URL: https://github.com/sudo-self/jessejesse
- Owner: sudo-self
- Created: 2023-09-24T19:46:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-10T00:45:36.000Z (over 2 years ago)
- Last Synced: 2025-08-24T01:35:00.002Z (10 months ago)
- Language: JavaScript
- Homepage: https://www.JesseJesse.com
- Size: 1.21 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# JesseJesse.com

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 (
);
}
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
```