diff --git a/src/root.component.tsx b/src/root.component.tsx
deleted file mode 100644
index e11ba45..0000000
--- a/src/root.component.tsx
+++ /dev/null
@@ -1,8 +0,0 @@
-import React from 'react';
-
-const Root: React.FC = () => {
-
- return
root
;
-};
-
-export default Root;
diff --git a/src/root.scss b/src/root.scss
deleted file mode 100644
index be4c2f4..0000000
--- a/src/root.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-@use '@carbon/styles/scss/spacing';
-@use '@carbon/styles/scss/type';
-
diff --git a/src/root.test.tsx b/src/root.test.tsx
deleted file mode 100644
index d0d8e7b..0000000
--- a/src/root.test.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import React from 'react';
-import { render, screen } from '@testing-library/react';
-import Root from './root.component';
-
-it('renders a landing page for the Template app', () => {
- render();
-
- expect(screen.getByText('root')).toBeInTheDocument();
-});