()
| 93 | }; |
| 94 | |
| 95 | const ThemedGetStarted = () => { |
| 96 | const isDarkTheme = useColorMode().colorMode === 'dark'; |
| 97 | return ( |
| 98 | <PaperProvider theme={isDarkTheme ? DarkTheme : DefaultTheme}> |
| 99 | <GetStartedButton /> |
| 100 | </PaperProvider> |
| 101 | ); |
| 102 | }; |
| 103 | |
| 104 | export default function ClientSideGetStarted() { |
| 105 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…