(props: LoaderProps)
| 7 | } |
| 8 | |
| 9 | export function Loader(props: LoaderProps) { |
| 10 | return ( |
| 11 | <Center position="fixed" top={0} left={0} right={0} bottom={0} color="brand.primaryText" bg="inherit"> |
| 12 | <VStack> |
| 13 | <Logo width={100} height={100}/> |
| 14 | <Text>{props.children}</Text> |
| 15 | </VStack> |
| 16 | </Center> |
| 17 | ); |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected