Themes: add themes

This commit is contained in:
He4eT 2021-03-01 00:14:50 +05:00
commit 26760082f9
6 changed files with 132 additions and 17 deletions

View file

@ -14,5 +14,9 @@ export default function ({ setTheme, theme, encodedUrl }) {
setTargetUrl(decode(encodedUrl))
}, [encodedUrl])
return (<UrlPlayer url={targetUrl} />)
return (
<main>
<UrlPlayer url={targetUrl} />
</main>
)
}