mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-12 17:50:51 +01:00
11 lines
230 B
JavaScript
11 lines
230 B
JavaScript
|
import React from 'react';
|
||
|
import StyledWrapper from './StyledWrapper';
|
||
|
|
||
|
const StatusCode = () => {
|
||
|
return (
|
||
|
<StyledWrapper className="text-green-700 mt-4">
|
||
|
200 OK
|
||
|
</StyledWrapper>
|
||
|
)
|
||
|
};
|
||
|
export default StatusCode;
|