-
Notifications
You must be signed in to change notification settings - Fork 0
/
comp1.jsx
46 lines (32 loc) · 1011 Bytes
/
comp1.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import React from 'react'; // import potrzebnych bibliotek
class Comp1 extends React.Component { // klasa będąca komponentem
constructor(props) { // konstruktor klasy, przechowuje stan danego komponentu
super(props);
}
vixa() {
console.log("Dobry wieczor Polska");
}
render() { // to będzie zwracane w htmlu!
return (
<div>
<b>Hi there!</b>
<b>Hello</b>
<button onClick={() => this.vixa()}>Click me!</button>
Hello Again!
<p>heyyyyyy</p>
<button type="button">Click Me!</button>
<h1>eloo</h1>
fsdgsgsdgsdf
<h3>glasld</h3>
<button onClick={() => this.vixa()}>Click me!</button>
<p>Co tam u was?</p>
<button onClick={() => this.vixa()}>Click me!</button>
<p>Co tam u was?</p>
<p>Paragraf</p>
<p>Coś</p>
<p>numer 3</p>
</div>
);
}
}
export default Comp1; // eksport komponentu, zeby mozna go było uzywać w innych plikach