15 lines
No EOL
317 B
TypeScript
15 lines
No EOL
317 B
TypeScript
import React from 'react';
|
|
import Header from "../components/Header/Header.tsx";
|
|
import MainComponent from "../components/MainComponent/MainComponent.tsx";
|
|
|
|
|
|
const Settings: React.FC = () => {
|
|
return (
|
|
<>
|
|
<Header />
|
|
<MainComponent />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Settings; |