feat(website): implement link directly to configure

This commit is contained in:
Brandon Millman
2018-11-28 13:46:41 -08:00
parent e1c237a8e4
commit 63cb312c7f
4 changed files with 36 additions and 6 deletions

View File

@@ -3,4 +3,10 @@ import * as React from 'react';
import { Container } from 'ts/components/ui/container';
import { colors } from 'ts/style/colors';
export const Configurator = () => <Container height="400px" backgroundColor={colors.instantTertiaryBackground} />;
export interface ConfiguratorProps {
hash: string;
}
export const Configurator = (props: ConfiguratorProps) => (
<Container id={props.hash} height="400px" backgroundColor={colors.instantTertiaryBackground} />
);