24 lines
420 B
TypeScript
Executable file
24 lines
420 B
TypeScript
Executable file
import React, { Component } from 'react';
|
|
|
|
import Header from './components/Header/Header';
|
|
|
|
import './App.css';
|
|
|
|
class App extends Component {
|
|
public render() {
|
|
const channel: Channel = {
|
|
id: 1,
|
|
name: 'test',
|
|
totalClients: -1,
|
|
neededSubscribePower: 0,
|
|
subchannels: [],
|
|
};
|
|
return (
|
|
<div className='App'>
|
|
<Header />
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default App;
|