@crystaltech/hsms-shared-ui 0.0.3-beta-0.4 → 0.0.3

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.
package/README.md CHANGED
@@ -885,7 +885,6 @@ const data: DataStructure = [
885
885
  ],
886
886
  ];
887
887
  ```
888
-
889
888
  usage of the MultiDynamicTable
890
889
 
891
890
  ```ts
@@ -923,7 +922,6 @@ const Tables = () => {
923
922
 
924
923
  export default Tables;
925
924
  ```
926
-
927
925
  ### 13. `CustomTabs`
928
926
 
929
927
  ### 14. `CustomTabs`
@@ -1,5 +1,6 @@
1
1
  interface LoginViewProps {
2
2
  login: () => void;
3
+ authenticated: boolean;
3
4
  }
4
5
  declare const LoginView: React.FC<LoginViewProps>;
5
6
  export default LoginView;