summaryrefslogtreecommitdiff
path: root/src/App.tsx
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-03-13 21:40:29 +0300
committereug-vs <eug-vs@keemail.me>2021-03-13 21:40:29 +0300
commit58c47725b9f2c171065b9e35cdbc0e4525ec7255 (patch)
treee29351810c0e35743f1fdbcc4f74f6352dceecaa /src/App.tsx
downloadcommercel-ui-58c47725b9f2c171065b9e35cdbc0e4525ec7255.tar.gz
Initialize project using Create React App
Diffstat (limited to 'src/App.tsx')
-rw-r--r--src/App.tsx26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/App.tsx b/src/App.tsx
new file mode 100644
index 0000000..a53698a
--- /dev/null
+++ b/src/App.tsx
@@ -0,0 +1,26 @@
+import React from 'react';
+import logo from './logo.svg';
+import './App.css';
+
+function App() {
+ return (
+ <div className="App">
+ <header className="App-header">
+ <img src={logo} className="App-logo" alt="logo" />
+ <p>
+ Edit <code>src/App.tsx</code> and save to reload.
+ </p>
+ <a
+ className="App-link"
+ href="https://reactjs.org"
+ target="_blank"
+ rel="noopener noreferrer"
+ >
+ Learn React
+ </a>
+ </header>
+ </div>
+ );
+}
+
+export default App;