import React from 'react'; import { Markdown } from '../../../Markdown'; export interface IExpressionPreviewProps { spelPreview: string; markdown: boolean; } export const ExpressionPreview = ({ spelPreview, markdown }: IExpressionPreviewProps) => (
Preview:{' '} {markdown ? : {spelPreview}}
);