(element: ReactNode)
| 54 | }; |
| 55 | |
| 56 | export const render = (element: ReactNode) => { |
| 57 | return renderWithRouter( |
| 58 | createMemoryRouter( |
| 59 | [ |
| 60 | { |
| 61 | path: "/", |
| 62 | element, |
| 63 | }, |
| 64 | ], |
| 65 | { initialEntries: ["/"] }, |
| 66 | ), |
| 67 | ); |
| 68 | }; |
| 69 | |
| 70 | export type RenderWithAuthOptions = { |
| 71 | // The current URL, /workspaces/123 |