Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com> Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
import { isJSONContentType } from "../utils/contenttypes";
|
|
|
|
const jsonLens = {
|
|
lensName: "JSON",
|
|
isSupportedContentType: isJSONContentType,
|
|
renderer: "json",
|
|
rendererImport: () => import("~/components/lenses/renderers/JSONLensRenderer"),
|
|
}
|
|
|
|
export default jsonLens
|