mirror of
https://github.com/IgnatZakalinsky/home-works.git
synced 2026-01-30 12:32:48 +00:00
hw5
This commit is contained in:
13
src/s2-homeworks/hw05/pages/Error404.tsx
Normal file
13
src/s2-homeworks/hw05/pages/Error404.tsx
Normal 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
|
||||
15
src/s2-homeworks/hw05/pages/Junior.tsx
Normal file
15
src/s2-homeworks/hw05/pages/Junior.tsx
Normal 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
|
||||
15
src/s2-homeworks/hw05/pages/JuniorPlus.tsx
Normal file
15
src/s2-homeworks/hw05/pages/JuniorPlus.tsx
Normal 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
|
||||
19
src/s2-homeworks/hw05/pages/PreJunior.tsx
Normal file
19
src/s2-homeworks/hw05/pages/PreJunior.tsx
Normal 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
|
||||
Reference in New Issue
Block a user