Skip to content
This repository was archived by the owner on Dec 25, 2025. It is now read-only.

Commit bbd12c0

Browse files
committed
Delete jsx files and use tsx ones instead
1 parent 44b31cf commit bbd12c0

4 files changed

Lines changed: 7 additions & 20 deletions

File tree

src/app.jsx

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from "react";
1+
import React from 'react';
22

33
const App = () => <p>Hallo, hier ist alles schön :)</p>;
44

src/index.jsx

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/index.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import "core-js/stable";
2-
import "regenerator-runtime/runtime";
1+
import 'core-js/stable';
2+
import 'regenerator-runtime/runtime';
33

4-
import React from "react";
5-
import ReactDOM from "react-dom";
6-
import App from "./app";
4+
import React from 'react';
5+
import ReactDOM from 'react-dom';
6+
import App from './app';
77

8-
ReactDOM.render(<App />, document.getElementById("root"));
8+
ReactDOM.render(<App />, document.getElementById('root'));

0 commit comments

Comments
 (0)