From 0f3e1419f613121c1ebf923aebbbf059cf89e1b9 Mon Sep 17 00:00:00 2001 From: Alan Parra Date: Mon, 30 Sep 2024 15:04:49 -0300 Subject: [PATCH] fix: Add missing license headers --- .../components/EmptyState/EmptyState.tsx | 18 ++++++++++++++++++ .../src/Bots/List/EmptyState/EmptyState.tsx | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/web/packages/shared/components/EmptyState/EmptyState.tsx b/web/packages/shared/components/EmptyState/EmptyState.tsx index 7cf4b9f9eface..0416f75575b31 100644 --- a/web/packages/shared/components/EmptyState/EmptyState.tsx +++ b/web/packages/shared/components/EmptyState/EmptyState.tsx @@ -1,3 +1,21 @@ +/** + * Teleport + * Copyright (C) 2024 Gravitational, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + import styled from 'styled-components'; import { Flex, Text, Box } from 'design'; diff --git a/web/packages/teleport/src/Bots/List/EmptyState/EmptyState.tsx b/web/packages/teleport/src/Bots/List/EmptyState/EmptyState.tsx index 36be0d31dfd1a..0d45db1cd757b 100644 --- a/web/packages/teleport/src/Bots/List/EmptyState/EmptyState.tsx +++ b/web/packages/teleport/src/Bots/List/EmptyState/EmptyState.tsx @@ -1,3 +1,21 @@ +/** + * Teleport + * Copyright (C) 2024 Gravitational, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + import React, { useState, useEffect } from 'react'; import styled, { useTheme } from 'styled-components'; import { Link } from 'react-router-dom';