23 lines
		
	
	
		
			445 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			445 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/*
 | 
						|
	./app/components/App.jsx
 | 
						|
	
 | 
						|
	<FetchData url={"https://apollo.kevinmidboe.com/api/v1/plex/playing"} />
 | 
						|
*/
 | 
						|
import React from 'react';
 | 
						|
import FetchData from './FetchData.js';
 | 
						|
import ListStrays from './ListStrays.jsx'
 | 
						|
 | 
						|
export default class App extends React.Component {
 | 
						|
	render() {
 | 
						|
		return (
 | 
						|
			<div>
 | 
						|
				<div style={{textAlign: 'center'}}>
 | 
						|
					<h1>Welcome to Seasoned</h1>
 | 
						|
				</div>
 | 
						|
					<ListStrays />
 | 
						|
 | 
						|
					<FetchData />
 | 
						|
			</div>
 | 
						|
		);
 | 
						|
	}
 | 
						|
} |