feat(website): implement link directly to configure
This commit is contained in:
@@ -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} />
|
||||
);
|
||||
|
Reference in New Issue
Block a user