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} /> );