-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Hello World #36
base: main
Are you sure you want to change the base?
Add Hello World #36
Conversation
web/src/App.tsx
Outdated
@@ -3,6 +3,12 @@ import './App.css'; | |||
import reactLogo from './assets/react.svg'; | |||
import IncrementButton from './IncrementButton'; | |||
|
|||
function helloWorld(){ | |||
console.log("Hello World") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
web/src/App.tsx
Outdated
@@ -3,6 +3,12 @@ import './App.css'; | |||
import reactLogo from './assets/react.svg'; | |||
import IncrementButton from './IncrementButton'; | |||
|
|||
function helloWorld(){ | |||
console.log("Hello World") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
web/src/App.tsx
Outdated
console.log("Hello World") | ||
} | ||
|
||
helloWorld() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
…orts/react-snake into feature/JakeIV/snakeGameHW
web/src/App.tsx
Outdated
class SnakeEngine{ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <padded-blocks> reported by reviewdog 🐶
Block must not be padded by blank lines.
class SnakeEngine{ | |
class SnakeEngine{ |
web/src/App.tsx
Outdated
class SnakeEngine{ | ||
|
||
static helloWorld(){ | ||
console.log("Hello World") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
web/src/App.tsx
Outdated
class SnakeEngine{ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <padded-blocks> reported by reviewdog 🐶
Block must not be padded by blank lines.
class SnakeEngine{ | |
class SnakeEngine |
web/src/App.tsx
Outdated
@@ -3,6 +3,15 @@ import './App.css'; | |||
import reactLogo from './assets/react.svg'; | |||
import IncrementButton from './IncrementButton'; | |||
|
|||
class SnakeEngine{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <space-before-blocks> reported by reviewdog 🐶
Missing space before opening brace.
class SnakeEngine{ | |
class SnakeEngine { |
web/src/App.tsx
Outdated
@@ -3,6 +3,15 @@ import './App.css'; | |||
import reactLogo from './assets/react.svg'; | |||
import IncrementButton from './IncrementButton'; | |||
|
|||
class SnakeEngine{ | |||
|
|||
static helloWorld(){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <space-before-blocks> reported by reviewdog 🐶
Missing space before opening brace.
static helloWorld(){ | |
static helloWorld() { |
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
web/src/App.tsx
Outdated
class SnakeEngine{ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <padded-blocks> reported by reviewdog 🐶
Block must not be padded by blank lines.
class SnakeEngine{ | |
class SnakeEngine |
web/src/App.tsx
Outdated
@@ -3,6 +3,15 @@ import './App.css'; | |||
import reactLogo from './assets/react.svg'; | |||
import IncrementButton from './IncrementButton'; | |||
|
|||
class SnakeEngine{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <space-before-blocks> reported by reviewdog 🐶
Missing space before opening brace.
class SnakeEngine{ | |
class SnakeEngine { |
web/src/App.tsx
Outdated
class SnakeEngine{ | ||
|
||
static helloWorld() { | ||
console.log('Hello World') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
web/src/App.tsx
Outdated
class SnakeEngine { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <padded-blocks> reported by reviewdog 🐶
Block must not be padded by blank lines.
class SnakeEngine { | |
class SnakeEngine { |
web/src/App.tsx
Outdated
class SnakeEngine { | ||
|
||
static helloWorld() { | ||
console.log('Hello World') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
web/src/App.tsx
Outdated
import reactLogo from './assets/react.svg'; | ||
import IncrementButton from './IncrementButton'; | ||
import {SnakeEngine} from './SnakeEngine/SnakeEngine'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <object-curly-spacing> reported by reviewdog 🐶
A space is required after '{'.
import {SnakeEngine} from './SnakeEngine/SnakeEngine'; | |
import { SnakeEngine} from './SnakeEngine/SnakeEngine'; |
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
web/src/App.tsx
Outdated
import reactLogo from './assets/react.svg'; | ||
import IncrementButton from './IncrementButton'; | ||
import {SnakeEngine } from './SnakeEngine/SnakeEngine'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <object-curly-spacing> reported by reviewdog 🐶
A space is required after '{'.
import {SnakeEngine } from './SnakeEngine/SnakeEngine'; | |
import { SnakeEngine } from './SnakeEngine/SnakeEngine'; |
Great start, please merge main into this branch to resolve conflicts then will approve Thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work! Merge main into branch to resolve conflicts then can approve
…orts/react-snake into feature/JakeIV/snakeGameHW
…orts/react-snake into feature/JakeIV/snakeGameHW
…orts/react-snake into feature/JakeIV/snakeGameHW
…orts/react-snake into feature/JakeIV/snakeGameHW
…orts/react-snake into feature/JakeIV/snakeGameHW
Checklist ✅
What does this PR do? 🤔
Screenshots / Videos 📸