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