2023-03-03 09:29:46 -05:00
|
|
|
import { Loading } from 'components/Loading'
|
2023-03-03 09:06:14 -05:00
|
|
|
import React from 'react'
|
|
|
|
|
|
|
|
|
|
export const Home: React.FC = ({ }) => {
|
|
|
|
|
return <>
|
2023-03-03 09:29:46 -05:00
|
|
|
Hello world! <Loading />
|
2023-03-03 09:06:14 -05:00
|
|
|
</>
|
|
|
|
|
}
|