Add movie recommendation template

Closes #377
This commit is contained in:
Baptiste Arnaud
2023-03-09 17:37:39 +01:00
parent ddd20f6235
commit 53cdb35984
8 changed files with 697 additions and 19 deletions

View File

@@ -5,7 +5,7 @@ import { RedirectOptions } from 'models'
type Props = { url: RedirectOptions['url'] }
export const RedirectNodeContent = ({ url }: Props) => (
<Text color={url ? 'currentcolor' : 'gray.500'} noOfLines={1}>
<Text color={url ? 'currentcolor' : 'gray.500'} noOfLines={2}>
{url ? `Redirect to ${url}` : 'Configure...'}
</Text>
)