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;
|