stremio-web/src/routes/Library/Library.js
2018-06-14 20:13:26 +03:00

11 lines
244 B
JavaScript

import React, { Component } from 'react';
class Library extends Component {
render() {
return (
<div style={{ color: 'pink', paddingTop: 40 }}>You're on the Library Tab</div>
);
}
}
export default Library;