aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/libs
diff options
context:
space:
mode:
Diffstat (limited to 'client/js/app/src/app/libs')
-rw-r--r--client/js/app/src/app/libs/notification/index.jsx1
-rw-r--r--client/js/app/src/app/libs/notification/messages.jsx1
-rw-r--r--client/js/app/src/app/libs/notification/rest-message.jsx1
-rw-r--r--client/js/app/src/app/libs/router.jsx1
-rw-r--r--client/js/app/src/app/libs/theme-provider.jsx1
5 files changed, 5 insertions, 0 deletions
diff --git a/client/js/app/src/app/libs/notification/index.jsx b/client/js/app/src/app/libs/notification/index.jsx
index 9313e3c9adf..4e055713e7b 100644
--- a/client/js/app/src/app/libs/notification/index.jsx
+++ b/client/js/app/src/app/libs/notification/index.jsx
@@ -1,2 +1,3 @@
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
export * from 'app/libs/notification/rest-message';
export * from 'app/libs/notification/messages';
diff --git a/client/js/app/src/app/libs/notification/messages.jsx b/client/js/app/src/app/libs/notification/messages.jsx
index 87f94b0dda0..e9236d7efb3 100644
--- a/client/js/app/src/app/libs/notification/messages.jsx
+++ b/client/js/app/src/app/libs/notification/messages.jsx
@@ -1,3 +1,4 @@
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
import React from 'react';
import { showNotification } from '@mantine/notifications';
import { Icon } from 'app/components';
diff --git a/client/js/app/src/app/libs/notification/rest-message.jsx b/client/js/app/src/app/libs/notification/rest-message.jsx
index d05d28754b8..eb876b3c879 100644
--- a/client/js/app/src/app/libs/notification/rest-message.jsx
+++ b/client/js/app/src/app/libs/notification/rest-message.jsx
@@ -1,3 +1,4 @@
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
import {
errorMessage,
infoMessage,
diff --git a/client/js/app/src/app/libs/router.jsx b/client/js/app/src/app/libs/router.jsx
index c942470d057..452a0d6379f 100644
--- a/client/js/app/src/app/libs/router.jsx
+++ b/client/js/app/src/app/libs/router.jsx
@@ -1,3 +1,4 @@
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
import React from 'react';
import { Routes, Route, useParams, Navigate } from 'react-router-dom';
import { Error } from 'app/components';
diff --git a/client/js/app/src/app/libs/theme-provider.jsx b/client/js/app/src/app/libs/theme-provider.jsx
index c5e9cbee963..d7fe2b0c72a 100644
--- a/client/js/app/src/app/libs/theme-provider.jsx
+++ b/client/js/app/src/app/libs/theme-provider.jsx
@@ -1,3 +1,4 @@
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
import React from 'react';
import { Global, MantineProvider } from '@mantine/core';
import { Colors } from 'app/styles/theme/colors';