Hi PortEXE, I would like to learn React Native since I now have a decent understanding of Django. Which project would you recommend I start with React or React-Native? I am told there is a much steeper learning curve with React since you need to learn a lot about importing different types of modules and that with React Native you just need to learn the very basics of React in order to get started with React Native since React Native doesn't use the virtual DOM but instead uses APIs for native components, did I get this right? Or am I completely wrong?
I dont understand this just over complecates things and I followed your instructions now it will not render when I have import {App} from 'componets'; only works with import {App} from './components'; Also your ReactDom is completely different from the default create-react-app you never explain this in your video: Yours: ReactDOM.render(
there were some extensions that i had to install to do the same you did in the video, and i didn't know it because you didn't explain...so i had to figure out by my self.
@@PortEXE Clearly, we're both wrong. See the pronunciation from the creator himself... How to Pronounce JSON www.google.com/url?sa=t&source=web&rct=j&url=m.youtube.com/watch%3Fv%3DuR-f4b0G9lo&ved=2ahUKEwiewduludj8AhXblmoFHcwFBl0QFnoECBEQBA&usg=AOvVaw38UFr2NyScLNmcjmTPGOoF
Hi PortEXE, I would like to learn React Native since I now have a decent understanding of Django. Which project would you recommend I start with React or React-Native? I am told there is a much steeper learning curve with React since you need to learn a lot about importing different types of modules and that with React Native you just need to learn the very basics of React in order to get started with React Native since React Native doesn't use the virtual DOM but instead uses APIs for native components, did I get this right? Or am I completely wrong?
Curious why you dont like default exports for your components? Doesn't it make it easier to distinguish a component from a util function etc?
Oh I guess so you can import multiple components in the same line with the way yuou are doing it
Excellent video brothe
what is the theme you used for visual studio
deafult export is bad in ts i like your style
Awesome thanks!
No problem!
I dont understand this just over complecates things and I followed your instructions now it will not render when I have import {App} from 'componets'; only works with import {App} from './components';
Also your ReactDom is completely different from the default create-react-app you never explain this in your video:
Yours:
ReactDOM.render(
,
document.getElementById('root'),
);
Default:
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
);
Have you ever tried using Vite?
Yes I use Vite nowadays.
there were some extensions that i had to install to do the same you did in the video, and i didn't know it because you didn't explain...so i had to figure out by my self.
Like what?
Is the common index.js exporter file inspired from python?
Not necessarily, no. It’s more of a common standard among a lot of different projects. It just tells *things* what certain directories have to offer.
thanks
yw 👍
should i start with svelte or react?
Personally I think React is the move
if you plan on getting a job, obviously react is the way
It would be almost faster to create the react template/structure for your App from scratch than doing all these modifications ...
It takes far less time when I’m not explaining everything as I go
@@PortEXE ok, thx.. It was "some" humour ...
Love the content! Hate your pronunciation of JSON. It's like the name Jason, not JSAHN, Dammit! Let the wars begin! (But REALLY GREAT content!!!)
It’s pronounced the same as it is pronounced in the word “object” since that is the word it comes from.
@@PortEXE
Clearly, we're both wrong. See the pronunciation from the creator himself...
How to Pronounce JSON
www.google.com/url?sa=t&source=web&rct=j&url=m.youtube.com/watch%3Fv%3DuR-f4b0G9lo&ved=2ahUKEwiewduludj8AhXblmoFHcwFBl0QFnoECBEQBA&usg=AOvVaw38UFr2NyScLNmcjmTPGOoF
@@jonaskromwell4464 Well the creator of GIF says it's pronounced "JIFF" so I don't go by that logic.
please checkout component-creator-reactjs on npm .. it might help you with your boilerplate code generation
I actually plan on making my own cli tool for this pretty soon!