8 lines
142 B
TypeScript
8 lines
142 B
TypeScript
import { Text } from '@chakra-ui/react'
|
|
|
|
const Loading: React.FC = () => {
|
|
return (
|
|
<Text>Loading...</Text>
|
|
)
|
|
}
|
|
export default Loading |