Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com> Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
9 lines
201 B
JavaScript
9 lines
201 B
JavaScript
const rawLens = {
|
|
lensName: "Raw",
|
|
isSupportedContentType: () => true,
|
|
renderer: "raw",
|
|
rendererImport: () => import("~/components/lenses/renderers/RawLensRenderer"),
|
|
}
|
|
|
|
export default rawLens
|