lbry-desktop/web/component/meme.jsx

14 lines
275 B
React
Raw Normal View History

2021-07-19 19:58:40 +02:00
import React from 'react';
import Button from 'component/button';
2021-07-23 06:26:01 +02:00
const memes = require('memes');
2021-07-19 19:58:40 +02:00
export default function Meme() {
return (
<h1 className="home__meme">
2021-07-23 06:26:01 +02:00
<Button button="link" href={memes.url}>
{memes.text}
2021-07-19 19:58:40 +02:00
</Button>
</h1>
);
}