mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
18 lines
490 B
JavaScript
18 lines
490 B
JavaScript
import React from 'react';
|
|
|
|
import PreferencesTopbar from 'components/Preferences/PreferencesTopbar';
|
|
import PreferencesContentRoute from 'components/Preferences/PreferencesContentRoute';
|
|
|
|
|
|
export default function PreferencesContent() {
|
|
return (
|
|
<div className='dashboard-content dashboard-content--preferences'>
|
|
<PreferencesTopbar pageTitle={'asdad'} />
|
|
|
|
<div className='dashboard__preferences-content'>
|
|
<PreferencesContentRoute />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|