@foodpilot/foods 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,5 @@
1
1
  /// <reference types="react" />
2
- export declare function BaseTemplate(props: {
2
+ export interface IBaseTemplateProps {
3
3
  children: React.ReactNode;
4
- }): import("react/jsx-runtime").JSX.Element;
4
+ }
5
+ export declare const BaseTemplate: (props: IBaseTemplateProps) => import("react/jsx-runtime").JSX.Element;
@@ -7,5 +7,5 @@ export interface INavBarLink {
7
7
  export interface INavBarProps {
8
8
  links: INavBarLink[];
9
9
  }
10
- export default function NavBar(props: INavBarProps): import("react/jsx-runtime").JSX.Element;
10
+ export declare const Navbar: (props: INavBarProps) => import("react/jsx-runtime").JSX.Element;
11
11
  export declare function NavBarLink(props: INavBarLink): import("react/jsx-runtime").JSX.Element;