Changeset View
Changeset View
Standalone View
Standalone View
web/e.cash_v2/app/components/Atoms/ContentContainer.tsx
- This file was moved from web/e.cash_v2/app/components/ContentContainer.tsx.
| // Copyright (c) 2025 The Bitcoin developers | // Copyright (c) 2025 The Bitcoin developers | ||||
| // Distributed under the MIT software license, see the accompanying | // Distributed under the MIT software license, see the accompanying | ||||
| // file COPYING or http://www.opensource.org/licenses/mit-license.php. | // file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||||
| import React from "react"; | import React from "react"; | ||||
| import { cn } from "../utils/cn"; | import { cn } from "../../utils/cn"; | ||||
| type ContentContainerProps = { | type ContentContainerProps = { | ||||
| children: React.ReactNode; | children: React.ReactNode; | ||||
| className?: string; | className?: string; | ||||
| }; | }; | ||||
| export default function ContentContainer({ | export default function ContentContainer({ | ||||
| children, | children, | ||||
| Show All 10 Lines | |||||