// Copyright (c) 2017 PlanGrid, Inc. import React from "react"; import "../../styles/unsupported.scss"; export interface IUnsupportedViewerProps { fileType: string; unsupportedComponent?: React.ReactElement; } export const UnsupportedViewer: React.FC = (props) => (
{props.unsupportedComponent ? ( props.unsupportedComponent ) : (

{`.${props.fileType}`} is not supported.

)}
);