14 lines
No EOL
261 B
TypeScript
14 lines
No EOL
261 B
TypeScript
import React from 'react';
|
|
import './Yandex.css';
|
|
|
|
const YandexApp: React.FC = () => {
|
|
return (
|
|
<div className='yandex'>
|
|
{/* <h1>Vscode</h1>
|
|
<button>1</button>
|
|
<button>22</button> */}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default YandexApp; |