RocketChat/Rocket.Chat

View on GitHub
packages/uikit-playground/src/Pages/Prototype.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Box } from '@rocket.chat/fuselage';
import PrototypeContainer from '../Components/PtototypeContainer/PrototypeContainer';

const Prototype = () => {
  return (
    <Box w="100%" h="100%">
      <PrototypeContainer />
    </Box>
  );
};

export default Prototype;