mirror of
https://github.com/IgnatZakalinsky/home-works.git
synced 2026-01-28 12:32:45 +00:00
19 lines
398 B
TypeScript
19 lines
398 B
TypeScript
import React from 'react'
|
|
import HW10 from '../../hw10/HW10'
|
|
import HW11 from '../../hw11/HW11'
|
|
// import HW12 from '../../hw12/HW12'
|
|
// import HW13 from '../../hw13/HW13'
|
|
|
|
function JuniorPlus() {
|
|
return (
|
|
<div id={'hw5-page-junior-plus'}>
|
|
<HW10 />
|
|
<HW11 />
|
|
{/*<HW12 />*/}
|
|
{/*<HW13 />*/}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default JuniorPlus
|