8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import { installable } from '../utils';
|
|
import _CountDown from './CountDown';
|
|
|
|
const CountDown = installable(_CountDown);
|
|
|
|
export default CountDown;
|
|
export { CountDown };
|