Skip to content

Commit

Permalink
Update App.tsx
Browse files Browse the repository at this point in the history
imports exports
  • Loading branch information
Ibrahim-Halil-Kuray committed Oct 29, 2023
1 parent 85e51f4 commit a4f2039
Showing 1 changed file with 6 additions and 22 deletions.
28 changes: 6 additions & 22 deletions src/App.tsx
@@ -1,26 +1,10 @@
import React from 'react';
import logo from './logo.svg';
import './App.css';
import React, { useState } from 'react';
import Language from './components/Language';
import Difficulty from './components/Difficulty';
import Questions from './components/Questions';

const App: React.FunctionComponent = () => {
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>
);
const App: React.FC = () => {
return <div className="App"></div>;
};

export default App;

0 comments on commit a4f2039

Please sign in to comment.