mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 18:26:00 +00:00
10 lines
345 B
JavaScript
10 lines
345 B
JavaScript
import React from 'react';
|
|
import useFetch from '../utility/useFetch';
|
|
import styled from 'styled-components';
|
|
import theme from '../theme';
|
|
import DataGrid from '../datagrid/DataGrid';
|
|
|
|
export default function TableDataTab({ conid, database, schemaName, pureName }) {
|
|
return <DataGrid params={{ conid, database, schemaName, pureName }} />;
|
|
}
|