Context. A CSV string pulled from an API needs to be parsed into a DataFrame.
Your task. Write parse_csv(csv_text) that takes a CSV-formatted string (header row present) and returns a DataFrame.
Example. "a,b\n1,2\n3,4" → 2-row DataFrame with columns a and b.
Notes. Use io.StringIO to wrap the string so pd.read_csv can read it like a file. Always has a header row.