Skip to content

Commit 432456f

Browse files
committed
WIP
1 parent 16e0a5c commit 432456f

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import AddNewLicense from "./AddNewLicense";
2+
3+
export default {
4+
title: "pages/AddNewLicense",
5+
component: AddNewLicense,
6+
}
7+
8+
export const Default = () => <AddNewLicense />;

site/src/pages/DeploySettingsPage/LicensesSettingsPage/AddNewLicense.tsx

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,12 @@
11

2-
import { useQuery } from "@tanstack/react-query"
3-
import { getLicenses } from "api/api"
42
import { Stack } from "components/Stack/Stack"
53
import { FC } from "react"
6-
import { Helmet } from "react-helmet-async"
7-
import { pageTitle } from "utils/page"
8-
import { License } from "api/typesGenerated"
94
import { Header } from "components/DeploySettingsLayout/Header"
10-
import { Button, Card, CardContent, Typography } from "@material-ui/core"
11-
import dayjs from "dayjs"
12-
import { PageHeader, PageHeaderSubtitle, PageHeaderTitle } from "components/PageHeader/PageHeader"
13-
import { PlusOneOutlined } from "@material-ui/icons"
145

156
const AddNewLicense: FC = () => {
167

178
return (
189
<>
19-
<Helmet>
20-
<title>{pageTitle("Add new License")}</title>
21-
</Helmet>
2210
<Stack alignItems="baseline" direction="row" justifyContent="space-between">
2311
<Header
2412
title="Add your license"

0 commit comments

Comments
 (0)