Initial commit, hw01

This commit is contained in:
IgnatOffice
2022-05-23 18:46:07 +03:00
commit 372bf9f7b2
21 changed files with 9265 additions and 0 deletions

19
src/s1-main/App.tsx Normal file
View File

@@ -0,0 +1,19 @@
import React from 'react'
import s from './App.module.css'
import HW1 from '../s2-homeworks/hw01/HW1'
const App = () => {
return (
<div className={s.App}>
<div>react homeworks:</div>
<HW1/>
{/*<HW2/>*/}
{/*<HW3/>*/}
{/*<HW4/>*/}
{/*<HW5/>*/}
</div>
)
}
export default App