9 lines
113 B
TypeScript
9 lines
113 B
TypeScript
|
|
import React from 'react'
|
||
|
|
|
||
|
|
const NewsTicker = () => {
|
||
|
|
return (
|
||
|
|
<div></div>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default NewsTicker
|