forked from extern/bruno
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;
|