Skip to content

Commit a21bb18

Browse files
committed
chore: copyright statement on source files
1 parent e7aca21 commit a21bb18

28 files changed

+197
-1
lines changed

eslint.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright IBM Corp. 2025
3+
*
4+
* This source code is licensed under the Apache-2.0 license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
/*
29
* This config file started as the base config file included by Vite when creating a new React application March 24th 2025.
310
* Where it differs from this default will be noted in comments.

prettier.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright IBM Corp. 2025
3+
*
4+
* This source code is licensed under the Apache-2.0 license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
// prettier.config.js, .prettierrc.js, prettier.config.mjs, or .prettierrc.mjs
29

310
/**

src/__tests__/Welcome.test.jsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright IBM Corp. 2025
3+
*
4+
* This source code is licensed under the Apache-2.0 license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { test, expect } from 'vitest';
29
// eslint-disable-next-line import/namespace
310
import { screen } from '@testing-library/react';

src/api/message.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright IBM Corp. 2025
3+
*
4+
* This source code is licensed under the Apache-2.0 license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
/**
29
* This file contains client-side API functions that call our express.js backend routes
310
*/

src/components/footer/Footer.jsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright IBM Corp. 2025
3+
*
4+
* This source code is licensed under the Apache-2.0 license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { AspectRatio, Column } from '@carbon/react';
29

310
export const Footer = () => {

src/components/footer/footer.scss

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
@use '@carbon/react/scss/spacing' as *;
1+
/**
2+
* Copyright IBM Corp. 2025
3+
*
4+
* This source code is licensed under the Apache-2.0 license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
8+
@use '@carbon/react/scss/spacing' as *;
29

310
.cs--footer {
411
padding-block-start: $spacing-12;

src/components/nav/Nav.jsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright IBM Corp. 2025
3+
*
4+
* This source code is licensed under the Apache-2.0 license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { useState } from 'react';
29
import {
310
Header,

src/components/welcomeHeader/WelcomeHeader.jsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright IBM Corp. 2025
3+
*
4+
* This source code is licensed under the Apache-2.0 license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { AspectRatio, Button, Column, Grid } from '@carbon/react';
29

310
import { ArrowRight } from '@carbon/icons-react';

src/components/welcomeHeader/welcomeHeader.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright IBM Corp. 2025
3+
*
4+
* This source code is licensed under the Apache-2.0 license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
@use '@carbon/react/scss/spacing' as *;
29
@use '@carbon/react/scss/type' as *;
310
@use '@carbon/react/scss/theme' as *;

src/components/wrapper/PageWrapper.jsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright IBM Corp. 2025
3+
*
4+
* This source code is licensed under the Apache-2.0 license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { GlobalTheme, Theme } from '@carbon/react';
29

310
import { useThemes } from '../../hooks/useThemes';

0 commit comments

Comments
 (0)