You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Components -- class MyComponent extends React.Component {}
This -- this.method will usually refer to the method defined
Props -- the object holding the information behind a component, when a component passes this information to another, it's called "giving props" lovingly
Import/Export -- using components from multiple files must be exported from the file and imported into the one being used:
```
import MyFunc from './MyFile'
export class MyFunc extends React.Component {}
```
Components can render other components - may sometimes need import/export depending on componenet location