EZ
Size: a a a
EZ
А
J
J
SL
J
z
J
А
MK
J
z
J
SE
1.
App() {
const data = useSelector(state => state.data)
retrurn ( <Section data={data} />)
}
Section({ data }) {
const section = data.section
retrurn ( <Section section={section} /> )
}
2.
App() {
const data = useSelector(state => state.data)
retrurn ( <Section data={data} />)
}
Section({ data }) {
const section = useSelector(state => state.data.section)
retrurn ( <Section section={section} /> )
}
SL
1.
App() {
const data = useSelector(state => state.data)
retrurn ( <Section data={data} />)
}
Section({ data }) {
const section = data.section
retrurn ( <Section section={section} /> )
}
2.
App() {
const data = useSelector(state => state.data)
retrurn ( <Section data={data} />)
}
Section({ data }) {
const section = useSelector(state => state.data.section)
retrurn ( <Section section={section} /> )
}
SE
SL
J
R
R