mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-20 09:20:33 -07:00
13 lines
236 B
TypeScript
13 lines
236 B
TypeScript
import React from 'react';
|
|
import TopPanel from '../components/TopPanel';
|
|
import Counter from '../features/counter/Counter';
|
|
|
|
export default function CounterPage() {
|
|
return (
|
|
<>
|
|
<TopPanel />
|
|
<Counter />
|
|
</>
|
|
);
|
|
}
|