mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
28 lines
626 B
TypeScript
28 lines
626 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import classNames from 'classnames';
|
|
import styled from 'styled-components';
|
|
|
|
import { Card } from '@/components';
|
|
import { CLASSES } from '@/constants/classes';
|
|
import CurrenciesList from './CurrenciesList';
|
|
|
|
export default function PreferencesCurrenciesPage() {
|
|
return (
|
|
<div
|
|
className={classNames(
|
|
CLASSES.PREFERENCES_PAGE_INSIDE_CONTENT,
|
|
CLASSES.PREFERENCES_PAGE_INSIDE_CONTENT_CURRENCIES,
|
|
)}
|
|
>
|
|
<CurrenciesCard>
|
|
<CurrenciesList />
|
|
</CurrenciesCard>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const CurrenciesCard = styled(Card)`
|
|
padding: 0;
|
|
`;
|