aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/instant/configurator.tsx
blob: c836739bb899c3fc95522af423e092dbc03b55dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import * as React from 'react';

import { Container } from 'ts/components/ui/container';
import { colors } from 'ts/style/colors';

export interface ConfiguratorProps {
    hash: string;
}

export const Configurator = (props: ConfiguratorProps) => (
    <Container id={props.hash} height="400px" backgroundColor={colors.instantTertiaryBackground} />
);