stream/src/components/Info/index.js

19 lines
346 B
JavaScript
Raw Normal View History

import { h } from 'preact'
import { useEffect, useRef, useState } from 'preact/hooks'
import Logo from '../Logo'
import { H1, P } from '../Text'
import { Wrapper } from './styles'
const Info = ({ data }) => {
return (
<Wrapper>
<Logo active />
<H1>Next Stream</H1>
<P>dsdas</P>
</Wrapper>
)
}
export default Info