Skip to content
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

Course Issues #1

Open
alexanderson1993 opened this issue Dec 15, 2020 · 5 comments
Open

Course Issues #1

alexanderson1993 opened this issue Dec 15, 2020 · 5 comments

Comments

@alexanderson1993
Copy link
Contributor

If you find any issues with the course, leave a comment here. I'll mark the comment as resolved once the issue is fixed.

@AlbertVilaCalvo
Copy link

In "Quiz) Function Components" - https://platform.ui.dev/courses/1245232/lectures/27765238

The first question has answer React.Element. I believe it should be ReactElement without the dot.

@AlbertVilaCalvo
Copy link

Typo in "(Bonus) Intrinsic Elements" - https://platform.ui.dev/courses/1245232/lectures/27765251

There's 2 'to': "React is using to to say"

@AlbertVilaCalvo
Copy link

In "(Bonus) PropTypes" - https://platform.ui.dev/courses/1245232/lectures/27765278

The video does:

fruitType: PropTypes.oneOf(["apple", "orange", "banana"] as const).isRequired,
fruit: PropTypes.arrayOf(PropTypes.string).isRequired
addFruit: PropTypes.func.isRequired,

But the text has:

fruitType: PropTypes.oneOf(["apple", "orange", "banana"]).isRequired,
fruit: PropTypes.arrayOf(PropTypes.string)
addFruit: PropTypes.func,

@AlbertVilaCalvo
Copy link

AlbertVilaCalvo commented Mar 6, 2021

In "(Project) Popular" - https://platform.ui.dev/courses/1245232/lectures/27765322

The link to the GitHub Commit is wrong - it currently points to the same lecture URL.

Should be https://github.com/uidotdev/react-with-typescript-course/commit/e63907665f7992b9fae21aeedaf8945bde6ac93a

@cgreenblatt
Copy link

Class lesson - might want to switch the math operators :)
increment = () => {
this.setState(({ count }) => ({
count: count - 1,
}));
};
decrement = () => {
this.setState(({ count }) => ({
count: count + 1,
}));
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants