mirror of
https://github.com/usebruno/bruno.git
synced 2025-02-22 12:41:37 +01:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
|
import React from 'react';
|
||
|
import RequestBodyMode from './RequestBodyMode';
|
||
|
import StyledWrapper from './StyledWrapper';
|
||
|
|
||
|
const RequestBody = () => {
|
||
|
return(
|
||
|
<StyledWrapper className="mt-3">
|
||
|
<RequestBodyMode />
|
||
|
</StyledWrapper>
|
||
|
);
|
||
|
};
|
||
|
export default RequestBody;
|