This commit is contained in:
neko
2022-06-07 21:08:21 +03:00
parent d7e7ef9471
commit 4f91ec75cb
12 changed files with 248 additions and 16 deletions

View File

@@ -0,0 +1,13 @@
import React from 'react'
const Error404 = () => {
return (
<div id={'page-404'}>
<div>404</div>
<div>Page not found!</div>
<div>/.̫ .\</div>
</div>
)
}
export default Error404

View File

@@ -0,0 +1,15 @@
import React from 'react'
function Junior() {
return (
<div id={'hw5-page-junior'}>
junior page
{/*<HW6/>*/}
{/*<HW7/>*/}
{/*<HW8/>*/}
{/*<HW9/>*/}
</div>
)
}
export default Junior

View File

@@ -0,0 +1,15 @@
import React from 'react'
function JuniorPlus() {
return (
<div id={'hw5-page-junior-plus'}>
junior plus page
{/*<HW10/>*/}
{/*<HW11/>*/}
{/*<HW12/>*/}
{/*<HW13/>*/}
</div>
)
}
export default JuniorPlus

View File

@@ -0,0 +1,19 @@
import React from 'react'
import HW1 from '../../hw01/HW1'
import HW2 from '../../hw02/HW2'
import HW3 from '../../hw03/HW3'
import HW4 from '../../hw04/HW4'
function PreJunior() {
return (
<div id={'hw5-page-pre-junior'}>
pre junior page
<HW1/>
<HW2/>
<HW3/>
<HW4/>
</div>
)
}
export default PreJunior