lbry-desktop/ui/page/home/view.jsx

23 lines
394 B
React
Raw Normal View History

2020-01-02 17:30:27 +01:00
// @flow
import React from 'react';
import Page from 'component/page';
// import Button from 'component/button';
// type Props = {};
function HomePage() {
// props: Props
// const {} = props;
return (
<Page>
{/* TODO */}
{/* Recent From Following */}
{/* Trending for your tags */}
{/* Trending for everyone */}
</Page>
);
}
export default HomePage;