diff --git a/src/routes/Library/Library.js b/src/routes/Library/Library.js index 9c41faf0b..4562a6220 100644 --- a/src/routes/Library/Library.js +++ b/src/routes/Library/Library.js @@ -1,11 +1,26 @@ -import React, { Component } from 'react'; +const React = require('react'); +const { NavBar } = require('stremio-common'); +const styles = require('./styles'); -class Library extends Component { +class Library extends React.Component { render() { return ( -
You're on the Library Tab
+ + +
+ ); } } -export default Library; +module.exports = Library; diff --git a/src/routes/Library/index.js b/src/routes/Library/index.js index d7a827977..b1209f8da 100644 --- a/src/routes/Library/index.js +++ b/src/routes/Library/index.js @@ -1,3 +1,3 @@ -import Library from './Library'; +const Library = require('./Library'); -export default Library; +module.exports = Library; diff --git a/src/routes/Library/styles.less b/src/routes/Library/styles.less new file mode 100644 index 000000000..2648176b9 --- /dev/null +++ b/src/routes/Library/styles.less @@ -0,0 +1,4 @@ +.library-container { + background-color: var(--color-background); + height: 100%; +} \ No newline at end of file