Skip to content

Commit

Permalink
fix tsprune
Browse files Browse the repository at this point in the history
Refs: #6718
  • Loading branch information
Makko74 committed Aug 12, 2024
1 parent db7fb2a commit b1bc811
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import TabsLayout from './TabsLayout';

import './layout.css';

export type MainLayoutProps = {
type MainLayoutProps = {
children: React.ReactNode;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { KolNav } from '@public-ui/react';

import { LINKS } from '../../components/nav/links';

export type NavigationProps = {
type NavigationProps = {
className?: string;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import DatabaseData from './databasedata.json';
import { columnDefinitions } from './columns';
import React from 'react';

export type UseTableResult = {
type UseTableResult = {
data: any;
columns: any;
tableWith: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const tabs: TabButtonProps[] = [
},
];

export type TabsLayout = {
type TabsLayout = {
className?: string;
demoContent: React.ReactNode;
};
Expand Down

0 comments on commit b1bc811

Please sign in to comment.