diff --git a/_override/App.tsx b/_override/App.tsx new file mode 100644 index 00000000..70decdc3 --- /dev/null +++ b/_override/App.tsx @@ -0,0 +1,13 @@ +import * as React from 'react'; +import type { Location } from 'history'; + +export function App({ children, location }: React.PropsWithChildren<{ location: Location }>) { + return ( + <> +
+ Header +
+ {children} + + ); +} \ No newline at end of file