- Notifications
You must be signed in to change notification settings - Fork179
Export and Import#242
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Error handling, "try...catch"
Translate/try catch flow (review fixes)
Export and Import
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
|--------------|----------------| | ||
| `export class User {...}` | `export default class User {...}` | | ||
| `import {User} from ...` | `import User from ...`| | ||
Technically, we may have both default and named exports in a single module, but in practice people usually don't mix them. A module has either named exports or the default one. | ||
Технічно, ми можемо використовувати іменовані експорти та експорти за замовчуванням в одному модулі, але, на практиці, їх не прийнято змішувати. Модулі повинні мати або іменований експорт, або за замовчуванням. |
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.
Технічно, ми можемо використовувати іменовані експорти та експортиза замовчуваннямв одному модулі, але, на практиці, їх не прийнято змішувати. Модулі повинні мати або іменований експорт, абоза замовчуванням. | |
Технічно, ми можемо використовувати іменовані експорти татиповіекспорти в одному модулі, але, на практиці, їх не прийнято змішувати. Модулі повинні мати або іменований експорт, аботиповий. |
Uh oh!
There was an error while loading.Please reload this page.
Please make the requested changes. After it, add a comment "/done". |
/done |
Thank you 💖 I updated the Progress Issue#1 🎉 🎉 🎉 |
Translated Export and Import