mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-05 15:53:26 +00:00
8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
interface Props {
|
||
|
children: any;
|
||
|
}
|
||
|
|
||
|
export const Aux: React.SFC<Props> = ({ children }) => children;
|