Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

made changes to file #134

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 41 additions & 6 deletions CD220Labs/react-apps/src/App.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,44 @@
function App() {
return (
<div>
Hello World!
import React from 'react';
import axios from 'axios';

class App extends React.Component {
state = { APIlist:[] }

componentDidMount() {
let url = "https://api.publicapis.org/entries?category=Animals";
axios({
method: 'get',
url: url,
responseType: 'json'
}).then(resp => {
let listOfEntries = resp.data.entries;
let listOfEntriesAsArray = Object.entries(listOfEntries);
let entryDetails = listOfEntriesAsArray.map((entryDetail)=>{
return <li style={{color: "green"}}>{entryDetail[1]["API"]}
------- {entryDetail[1]["Link"]} </li>
})
this.setState({APIlist:<ul>{entryDetails}</ul>})
})
.catch(err => {
console.log(err.toString())
});
}

render() {
const colorStyle = { color:this.props.color,fontSize:this.props.size+"px"}
return (
<div style={colorStyle}>
<h2>APIs List</h2>
<br/>

<div>
{
this.state.APIlist
}
</div>
</div>
);
);
}
}

export default App;
export default App;
2 changes: 1 addition & 1 deletion CD220Labs/react-apps/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import App from './App';

ReactDOM.render(
<React.StrictMode>
<App />
<App color="green" size="20"/>
</React.StrictMode>,
document.getElementById('root')
);