10 lines
135 B
JavaScript
10 lines
135 B
JavaScript
|
|
function BusPromiseTemplate(props) {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
{props.children}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default BusPromiseTemplate;
|