mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-07 22:18:33 +00:00
* feat: theme + ux overhaul * chore: moved @opencollection/types at root of monorepo * chore: fixed review comments * chore: addressed review comments * chore: fix playwright tests --------- Co-authored-by: Bijin A B <bijin@usebruno.com>
15 lines
298 B
JavaScript
15 lines
298 B
JavaScript
import React from 'react';
|
|
import Font from './Font/index';
|
|
|
|
const Display = ({ close }) => {
|
|
return (
|
|
<div className="flex flex-col my-2 gap-10 w-full">
|
|
<div className="w-fit flex flex-col gap-2">
|
|
<Font close={close} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Display;
|