init
This commit is contained in:
parent
c5fb69f9e0
commit
5473ed64d8
6
.idea/inspectionProfiles/Project_Default.xml
generated
Normal file
6
.idea/inspectionProfiles/Project_Default.xml
generated
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<component name="InspectionProjectProfileManager">
|
||||||
|
<profile version="1.0">
|
||||||
|
<option name="myName" value="Project Default" />
|
||||||
|
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
||||||
|
</profile>
|
||||||
|
</component>
|
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
38
src/App.css
38
src/App.css
@ -1,38 +0,0 @@
|
|||||||
.App {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.App-logo {
|
|
||||||
height: 40vmin;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-reduced-motion: no-preference) {
|
|
||||||
.App-logo {
|
|
||||||
animation: App-logo-spin infinite 20s linear;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.App-header {
|
|
||||||
background-color: #282c34;
|
|
||||||
min-height: 100vh;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: calc(10px + 2vmin);
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.App-link {
|
|
||||||
color: #61dafb;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes App-logo-spin {
|
|
||||||
from {
|
|
||||||
transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
30
src/App.js
30
src/App.js
@ -1,26 +1,14 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import logo from './logo.svg';
|
import ListContainer from "./ListContainer";
|
||||||
import './App.css';
|
|
||||||
|
|
||||||
function App() {
|
class App extends React.Component {
|
||||||
return (
|
render() {
|
||||||
<div className="App">
|
return (
|
||||||
<header className="App-header">
|
<div>
|
||||||
<img src={logo} className="App-logo" alt="logo" />
|
<ListContainer/>
|
||||||
<p>
|
</div>
|
||||||
Edit <code>src/App.js</code> and save to reload.
|
);
|
||||||
</p>
|
}
|
||||||
<a
|
|
||||||
className="App-link"
|
|
||||||
href="https://reactjs.org"
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
>
|
|
||||||
Learn React
|
|
||||||
</a>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default App;
|
export default App;
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import { render } from '@testing-library/react';
|
|
||||||
import App from './App';
|
|
||||||
|
|
||||||
test('renders learn react link', () => {
|
|
||||||
const { getByText } = render(<App />);
|
|
||||||
const linkElement = getByText(/learn react/i);
|
|
||||||
expect(linkElement).toBeInTheDocument();
|
|
||||||
});
|
|
45
src/ListContainer.js
Normal file
45
src/ListContainer.js
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import ListElement from "./ListElement";
|
||||||
|
import style from './ListContainer.module.css';
|
||||||
|
|
||||||
|
class ListContainer extends React.Component {
|
||||||
|
constructor(props, context) {
|
||||||
|
super(props, context);
|
||||||
|
|
||||||
|
this.state = {
|
||||||
|
elements: [],
|
||||||
|
title: "Container of Elements"
|
||||||
|
}
|
||||||
|
|
||||||
|
this.handleclick = this.handleclick.bind(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div className={style.mainbody}>
|
||||||
|
<div className={style.title}>
|
||||||
|
{this.state.title}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<button onClick={this.handleclick}>click me</button>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
{
|
||||||
|
this.state.elements.map((elemname) => (
|
||||||
|
<ListElement></ListElement>
|
||||||
|
))
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
handleclick() {
|
||||||
|
let elems = this.state.elements;
|
||||||
|
elems.push("TESTNAME");
|
||||||
|
this.setState({elements: elems, title: "Container of several Elements"});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ListContainer;
|
13
src/ListContainer.module.css
Normal file
13
src/ListContainer.module.css
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
.mainbody{
|
||||||
|
margin-left: 200px;
|
||||||
|
margin-top: 150px;
|
||||||
|
|
||||||
|
width: 500px;
|
||||||
|
|
||||||
|
background-color: coral;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title{
|
||||||
|
text-align: center;
|
||||||
|
color: blue;
|
||||||
|
}
|
14
src/ListElement.js
Normal file
14
src/ListElement.js
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import style from './ListElement.module.css'
|
||||||
|
|
||||||
|
class ListElement extends React.Component {
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div className={style.mainelement}>
|
||||||
|
This is a element.
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ListElement;
|
9
src/ListElement.module.css
Normal file
9
src/ListElement.module.css
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
.mainelement {
|
||||||
|
text-align: center;
|
||||||
|
color: #5f4508;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mainelement:hover {
|
||||||
|
background-color: red;
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user