init structure is completed

This commit is contained in:
Nikolai Petukhov
2024-09-20 11:01:23 +03:00
parent 626d556e1a
commit 5ef5ca35b2
22 changed files with 161 additions and 31 deletions
+9
View File
@@ -0,0 +1,9 @@
import React from 'react';
const Chat = () => {
return (
<h2>Chat with ...</h2>
);
};
export default Chat;
-9
View File
@@ -1,9 +0,0 @@
import React from "react";
const Hello = () => {
return (
<h1>Hello!</h1>
)
}
export default Hello;
+9
View File
@@ -0,0 +1,9 @@
import React from "react";
const Home = () => {
return (
<h1 className="TestClass">Home</h1>
)
}
export default Home
-9
View File
@@ -1,9 +0,0 @@
import React from "react";
const HomePage = () => {
return (
<h1>Home</h1>
)
}
export default HomePage
+9
View File
@@ -0,0 +1,9 @@
import React from "react";
const Init = () => {
return (
<h1 className="TestInit">Init page</h1>
)
}
export default Init;
+13
View File
@@ -0,0 +1,13 @@
import React from 'react';
import InputField from "../components/reg/InputField.jsx";
const SignIn = () => {
return (
<div>
<h1>SignIn</h1>
<InputField/>
</div>
);
};
export default SignIn;
+13
View File
@@ -0,0 +1,13 @@
import React from 'react';
import InputField from "../components/reg/InputField.jsx";
const SignUp = () => {
return (
<div>
<h1>SignUp</h1>
<InputField/>
</div>
);
};
export default SignUp;
+5
View File
@@ -0,0 +1,5 @@
@import "init.css";
.TestClass {
color: red;
}
+3
View File
@@ -0,0 +1,3 @@
.TestInit {
color: blue;
}