rypi-scrapper/src/App.tsx

20 lines
418 B
TypeScript
Raw Normal View History

import type { Component } from 'solid-js'
2023-04-06 14:18:26 +00:00
import { Downloaders, TitleBar } from './components/layout'
const Main: Component = () => {
2023-04-06 14:18:26 +00:00
return (
<>
<TitleBar />
<main class='relative flex h-full w-screen flex-col items-center justify-center bg-[#242424] py-20'>
<span class='mb-20 text-white'>I would like to:</span>
2023-04-06 14:18:26 +00:00
<Downloaders />
</main>
</>
2023-04-06 14:18:26 +00:00
)
}
export default Main