use-neo4j
Version:
<div style="text-align:center"> <h1>React Hooks For Neo4j</h1>
23 lines (22 loc) • 720 B
TypeScript
import React from 'react';
import { Neo4jScheme, Neo4jConfig } from '../neo4j-config.interface';
interface LoginProps {
error?: Error;
onSubmit: (config: Neo4jConfig) => void;
scheme?: Neo4jScheme;
host?: string;
port?: string | number;
username?: string;
password?: string;
database?: string;
showHost?: boolean;
showActive?: boolean;
showProject?: boolean;
showDatabase?: boolean;
title?: React.ReactNode | React.ReactNode[] | null;
logo?: React.ReactNode | React.ReactNode[] | null;
details?: React.ReactNode | React.ReactNode[] | null;
footer?: React.ReactNode | React.ReactNode[] | null;
}
export declare const Login: React.FC<LoginProps>;
export {};