Skip to content
Open
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PatternFly 6</title>
<title>Red Hat Branded Theme for PatternFly 6</title>
</head>
<body>
<div id="root"></div>
Expand Down
137 changes: 93 additions & 44 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
"dependencies": {
"@patternfly/react-core": "^6.0.0",
"@patternfly/react-table": "^6.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
Expand Down
12 changes: 9 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ import './App.scss'
import HomePage from './views/Homepage/HomePage'
import PfButton from "./components/Button/Button";
import PfBreadcrumb from "./components/BreadCrumb/BreadCrumb";
import PfForm from "./components/Form/Form";
// import PfForm from "./components/Form/Form";
import PfAccordion from "./components/Accordion/Accordion";
import PfCard from "./components/Card/Card";
import 'redhat-brand-theme/dist/redhat-brand-theme.css';
import PfTable from "./components/Table/Table";
// import 'redhat-brand-theme/dist/redhat-brand-theme.css';
import './rhds-theme.css';

function App() {

Expand Down Expand Up @@ -37,7 +39,7 @@ const AppRoutes = createBrowserRouter([{
},
{
path: "/form",
element: <PfForm/>
// element: <PfForm/>
},
{
path: "/accordion",
Expand All @@ -46,6 +48,10 @@ const AppRoutes = createBrowserRouter([{
{
path: "/card",
element: <PfCard/>
},
{
path: "/table",
element: <PfTable/>
}
]
}])
Expand Down
Loading