blob: 3ef84ffe5af4787e3c9a679e261b11535b1ddce1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Main } from "src/main";
export function IndexPage() {
return (
<Main
productName={
typeof location !== "undefined" ? location.search.substring(1) : ""
}
/>
);
}
export default IndexPage;
|