Introduces an exportOrdersToCSV function in lib/api-client.ts to allow exporting orders by status as a CSV file. Updates various UI components to use the '•' (bullet) symbol instead of '·' (middle dot) and replaces some emoji/unicode characters for improved consistency and compatibility. Also normalizes the 'use client' directive to include a BOM in many files.
8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
import type React from "react"
|
|
import Layout from "../layout/layout"
|
|
|
|
export default function Dashboard({ children }: { children: React.ReactNode }) {
|
|
return <Layout>{children}</Layout>
|
|
}
|
|
|