test: add initial test files and component stubs
This commit is contained in:
committed by
Loic Coenen (aider)
parent
5a6de57a91
commit
826069e8dd
10
src/containers/TimeConverter.tsx
Normal file
10
src/containers/TimeConverter.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import { useState } from 'react';
|
||||
import { BerlinClock } from './BerlinClock';
|
||||
import { DigitalClock } from './DigitalClock';
|
||||
import { useCurrentTime } from '../hooks/useCurrentTime';
|
||||
|
||||
export function TimeConverter() {
|
||||
const [useSystemTime, setUseSystemTime] = useState(false);
|
||||
// When useSystemTime is true, both BerlinClock and DigitalClock are disabled.
|
||||
return null;
|
||||
}
|
||||
Reference in New Issue
Block a user