mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-25 15:52:58 +00:00
11 lines
244 B
JavaScript
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;
|