mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-18 19:39:51 +08:00
371c10c01f
* site: update dumi type * fix: fix * fix: fix * fix: fix * fix: fix
8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
import React from 'react';
|
|
|
|
const BrowserFrame: React.FC<React.PropsWithChildren> = ({ children }) => (
|
|
<div className="browser-mockup with-url">{children}</div>
|
|
);
|
|
|
|
export default BrowserFrame;
|