@nlabs/gothamjs
Version:
Platform
9 lines (8 loc) • 314 B
TypeScript
/**
* Copyright (c) 2018-Present, Nitrogen Labs, Inc.
* Copyrights licensed under the MIT License. See the accompanying LICENSE file for terms.
*/
export interface LoaderProps {
readonly content?: string;
}
export declare const Loader: ({ content }: LoaderProps) => import("react/jsx-runtime").JSX.Element;